[BACK]Return to gc_pthread_redirects.h CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / gc / include

Diff for /OpenXM_contrib2/asir2000/gc/include/gc_pthread_redirects.h between version 1.3 and 1.4

version 1.3, 2002/07/24 08:00:18 version 1.4, 2003/06/24 05:11:40
Line 52 
Line 52 
   int GC_pthread_create(pthread_t *new_thread,    int GC_pthread_create(pthread_t *new_thread,
                         const pthread_attr_t *attr,                          const pthread_attr_t *attr,
                         void *(*start_routine)(void *), void *arg);                          void *(*start_routine)(void *), void *arg);
   #ifndef GC_DARWIN_THREADS
   int GC_pthread_sigmask(int how, const sigset_t *set, sigset_t *oset);    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_join(pthread_t thread, void **retval);
   int GC_pthread_detach(pthread_t thread);    int GC_pthread_detach(pthread_t thread);
   
 # define pthread_create GC_pthread_create  # define pthread_create GC_pthread_create
   #ifndef GC_DARWIN_THREADS
 # define pthread_sigmask GC_pthread_sigmask  # define pthread_sigmask GC_pthread_sigmask
   #endif
 # define pthread_join GC_pthread_join  # define pthread_join GC_pthread_join
 # define pthread_detach GC_pthread_detach  # define pthread_detach GC_pthread_detach
   #ifndef GC_DARWIN_THREADS
 # define dlopen GC_dlopen  # define dlopen GC_dlopen
   #endif
   
 #endif /* GC_xxxxx_THREADS */  #endif /* GC_xxxxx_THREADS */
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>