summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/gxx01/gxx_wrappers.h
blob: 7db7715c4132f5d3fa8023a58ba1b34644a6d5e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
 * RTEMS threads compatibily routines for libgcc2.
 *
 * $Id$
 */

#ifndef __GCC_WRAPPERS_h 
#define __GCC_WRAPPERS_h

/*
 * These typedefs should match with the ones defined in the file
 * gcc/gthr-rtems.h in the gcc distribution.
 * FIXME: T.S, 2007/01/31: -> gcc/gthr-rtems.h still declares
 *                            void * __gthread_key_t;
 */
typedef struct __gthread_key_ {
	void *val; 	           /* this is switched with the task      */
	void (*dtor)(void*);   /* this remains in place for all tasks */
} __gthread_key, *__gthread_key_t;

typedef int   __gthread_once_t;
typedef void *__gthread_mutex_t;
typedef void *__gthread_recursive_mutex_t;

int rtems_gxx_once(__gthread_once_t *once, void (*func) (void));

int rtems_gxx_key_create (__gthread_key_t *key, void (*dtor) (void *));

int rtems_gxx_key_dtor (__gthread_key_t key, void *ptr);

int rtems_gxx_key_delete (__gthread_key_t key);

void *rtems_gxx_getspecific(__gthread_key_t key);

int rtems_gxx_setspecific(__gthread_key_t key, const void *ptr);

/*
 * MUTEX support
 */
void rtems_gxx_mutex_init (__gthread_mutex_t *mutex);

int rtems_gxx_mutex_lock (__gthread_mutex_t *mutex);

int rtems_gxx_mutex_destroy (__gthread_mutex_t *mutex);

int rtems_gxx_mutex_trylock (__gthread_mutex_t *mutex);

int rtems_gxx_mutex_unlock (__gthread_mutex_t *mutex);

void rtems_gxx_recursive_mutex_init(__gthread_recursive_mutex_t *mutex);

int rtems_gxx_recursive_mutex_lock(__gthread_recursive_mutex_t *mutex);

int rtems_gxx_recursive_mutex_trylock(__gthread_recursive_mutex_t *mutex);

int rtems_gxx_recursive_mutex_unlock(__gthread_recursive_mutex_t *mutex);

#endif