summaryrefslogtreecommitdiff
path: root/include/gc_pthread_redirects.h
blob: bd46f720acffe343ea933118e755031608003b6d (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* Our pthread support normally needs to intercept a number of thread	*/
/* calls.  We arrange to do that here, if appropriate.			*/

#ifndef GC_PTHREAD_REDIRECTS_H

#define GC_PTHREAD_REDIRECTS_H

#ifdef __cplusplus
extern "C" {
#endif
  void * GC_dlopen(const char *path, int mode);
#ifdef __cplusplus
} // extern "C"
#endif

#if defined(GC_SOLARIS_THREADS)
/* We need to intercept calls to many of the threads primitives, so 	*/
/* that we can locate thread stacks and stop the world.			*/
/* Note also that the collector cannot see thread specific data.	*/
/* Thread specific data should generally consist of pointers to		*/
/* uncollectable objects (allocated with GC_malloc_uncollectable,	*/
/* not the system malloc), which are deallocated using the destructor	*/
/* facility in thr_keycreate.  Alternatively, keep a redundant pointer	*/
/* to thread specific data on the thread stack.			        */
# include <thread.h>

#ifdef __cplusplus
extern "C" {
#endif

  int GC_thr_create(void *stack_base, size_t stack_size,
                    void *(*start_routine)(void *), void *arg, long flags,
                    thread_t *new_thread);
  int GC_thr_join(thread_t wait_for, thread_t *departed, void **status);
  int GC_thr_suspend(thread_t target_thread);
  int GC_thr_continue(thread_t target_thread);
# define thr_create GC_thr_create
# define thr_join GC_thr_join
# define thr_suspend GC_thr_suspend
# define thr_continue GC_thr_continue

#ifdef __cplusplus
} // extern "C"
#endif

#endif /* GC_SOLARIS_THREADS */

#if defined(GC_SOLARIS_PTHREADS)

# include <pthread.h>
# include <signal.h>

#ifdef __cplusplus
extern "C" {
#endif

  extern int GC_pthread_create(pthread_t *new_thread,
    			         const pthread_attr_t *attr,
          			 void * (*thread_execp)(void *), void *arg);
  extern int GC_pthread_join(pthread_t wait_for, void **status);
  extern int GC_pthread_detach(pthread_t thread);
# define pthread_join GC_pthread_join
# define pthread_create GC_pthread_create
# define pthread_detach GC_pthread_detach

#ifdef __cplusplus
} // extern "C"
#endif

#endif

#if defined(GC_SOLARIS_PTHREADS) || defined(GC_SOLARIS_THREADS)
# define dlopen GC_dlopen
#endif /* SOLARIS_THREADS || SOLARIS_PTHREADS */

#if !defined(GC_USE_LD_WRAP) && (defined(GC_PTHREADS) || defined(GC_DARWIN_THREADS) || defined(GC_MACOSX_THREADS)) && !defined(GC_SOLARIS_PTHREADS)
/* We treat these similarly. */
# include <pthread.h>
# include <signal.h>

#ifdef __cplusplus
extern "C" {
#endif

  int GC_pthread_create(pthread_t *new_thread,
                        const pthread_attr_t *attr,
		        void *(*start_routine)(void *), void *arg);
#ifndef GC_DARWIN_THREADS
  int GC_pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);
#endif
  int GC_pthread_join(pthread_t thread, void **retval);
  int GC_pthread_detach(pthread_t thread);
#if defined(__native_client__) || defined(NACL)
  void GC_pthread_exit(void *status);
# undef pthread_exit
# define pthread_exit GC_pthread_exit
#endif

#if defined(GC_OSF1_THREADS) \
    && defined(_PTHREAD_USE_MANGLED_NAMES_) && !defined(_PTHREAD_USE_PTDNAM_)
/* Unless the compiler supports #pragma extern_prefix, the Tru64 UNIX
   <pthread.h> redefines some POSIX thread functions to use mangled names.
   If so, undef them before redefining. */
# undef pthread_create
# undef pthread_join
# undef pthread_detach
#endif

# define pthread_create GC_pthread_create
# define pthread_join GC_pthread_join
# define pthread_detach GC_pthread_detach

#ifndef GC_DARWIN_THREADS 
# ifdef GC_NETBSD_THREADS
#  undef pthread_sigmask
# endif
# define pthread_sigmask GC_pthread_sigmask
# define dlopen GC_dlopen
#endif

#ifdef __cplusplus
} // extern "C"
#endif

#endif /* GC_xxxxx_THREADS */

#endif /* GC_PTHREAD_REDIRECTS_H */