/[guile]/guile/guile-core/libguile/coop-pthreads.h
ViewVC logotype

Diff of /guile/guile-core/libguile/coop-pthreads.h

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1 by mvo, Sun Oct 27 20:26:21 2002 UTC revision 1.2 by mvo, Wed Oct 30 10:41:51 2002 UTC
# Line 63  Line 63 
63    
64  #define SCM_THREAD_SWITCH_COUNT       50  #define SCM_THREAD_SWITCH_COUNT       50
65    
 extern pthread_t guile_thread;                       /* for debugging */  
   
66  #define SCM_THREAD_SWITCHING_CODE \  #define SCM_THREAD_SWITCHING_CODE \
67  do { \  do { \
   if (guile_thread != pthread_self ()) \  
     abort (); \  
68    scm_switch_counter--; \    scm_switch_counter--; \
69    if (scm_switch_counter == 0) \    if (scm_switch_counter == 0) \
70      { \      { \
# Line 79  do { \ Line 75  do { \
75    
76  SCM_API int scm_switch_counter;  SCM_API int scm_switch_counter;
77    
 struct scm_copt_thread;  
   
 typedef struct scm_copt_thread {  
     
   /* A condition variable for sleeping on.  
    */  
   pthread_cond_t block;  
     
   scm_root_state *root;  
   SCM handle;  
   pthread_t pthread;  
   SCM result;  
   
 } scm_copt_thread;  
   
 /* We implement our own mutex type since we want them to be 'fair',  
    we want to do fancy things while waiting for them (like running  
    asyncs) and we want to support waiting on many things at once.  
 */  
 typedef struct scm_copt_mutex {  
   /* the mutex for this data structure. */  
   pthread_mutex_t mutex;  
   /* the thread currently owning the mutex, or NULL. */  
   scm_copt_thread *owner;  
   /* how much the owner owns us. */  
   int level;  
   /* the threads waiting for this mutex. */  
   SCM waiting;  
 } scm_copt_mutex;  
   
 typedef scm_copt_mutex scm_t_mutex;  
   
 SCM_API void scm_copt_mutex_init (scm_copt_mutex *m);  
 SCM_API void scm_copt_mutex_lock (scm_copt_mutex *m);  
 SCM_API void scm_copt_mutex_unlock (scm_copt_mutex *m);  
 SCM_API void scm_copt_mutex_destroy (scm_copt_mutex *m);  
   
 #define scm_mutex_init    scm_copt_mutex_init  
 #define scm_mutex_lock    scm_copt_mutex_lock  
 #define scm_mutex_unlock  scm_copt_mutex_unlock  
 #define scm_mutex_destroy scm_copt_mutex_destroy  
   
 typedef pthread_cond_t scm_t_cond;  
   
 #define scm_cond_init(c)   pthread_cond_init ((c), NULL)  
 #define scm_cond_wait      pthread_cond_wait  
 #define scm_cond_signal    pthread_cond_signal  
 #define scm_cond_broadcast pthread_cond_broadcast  
 #define scm_cond_destroy   pthread_cond_destroy  
   
78  #define SCM_THREAD_LOCAL_DATA          (scm_copt_thread_data ())  #define SCM_THREAD_LOCAL_DATA          (scm_copt_thread_data ())
79  #define SCM_SET_THREAD_LOCAL_DATA(ptr) (scm_copt_set_thread_data (ptr))  #define SCM_SET_THREAD_LOCAL_DATA(ptr) (scm_copt_set_thread_data (ptr))
80    

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26