OpenCores
URL https://opencores.org/ocsvn/or1k/or1k/trunk

Subversion Repositories or1k

[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [keysetspecific.c] - Blame information for rev 1026

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1026 ivang
/*
2
 *  keysetspecific.c,v 1.2 2001/01/24 14:17:28 joel Exp
3
 */
4
 
5
#if HAVE_CONFIG_H
6
#include "config.h"
7
#endif
8
 
9
#include <errno.h>
10
#include <limits.h>
11
#include <pthread.h>
12
#include <string.h>
13
 
14
#include <rtems/system.h>
15
#include <rtems/score/thread.h>
16
#include <rtems/score/wkspace.h>
17
#include <rtems/posix/key.h>
18
 
19
/*PAGE
20
 *
21
 *  17.1.2 Thread-Specific Data Management, P1003.1c/Draft 10, p. 165
22
 */
23
 
24
int pthread_setspecific(
25
  pthread_key_t  key,
26
  const void    *value
27
)
28
{
29
  register POSIX_Keys_Control *the_key;
30
  unsigned32                   index;
31
  unsigned32                   class;
32
  Objects_Locations            location;
33
 
34
  the_key = _POSIX_Keys_Get( key, &location );
35
  switch ( location ) {
36
    case OBJECTS_ERROR:
37
    case OBJECTS_REMOTE:   /* should never happen */
38
      return EINVAL;
39
    case OBJECTS_LOCAL:
40
      index = _Objects_Get_index( _Thread_Executing->Object.id );
41
      class = _Objects_Get_class( _Thread_Executing->Object.id );
42
      the_key->Values[ class ][ index ] = (void *) value;
43
      _Thread_Enable_dispatch();
44
      return 0;
45
  }
46
  return POSIX_BOTTOM_REACHED();
47
}

powered by: WebSVN 2.1.0

© copyright 1999-2025 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.