@@ -94,48 +94,25 @@ static FILE *tsrm_error_file;
94
94
}
95
95
#endif
96
96
97
- #if defined(GNUPTH )
98
- static pth_key_t tls_key ;
99
- # define tsrm_tls_set (what ) pth_key_setdata(tls_key, (void*)(what))
100
- # define tsrm_tls_get () pth_key_getdata(tls_key)
101
-
102
- #elif defined(PTHREADS )
103
- /* Thread local storage */
104
- static pthread_key_t tls_key ;
105
- # define tsrm_tls_set (what ) pthread_setspecific(tls_key, (void*)(what))
106
- # define tsrm_tls_get () pthread_getspecific(tls_key)
107
-
108
- #elif defined(TSRM_ST )
109
- static int tls_key ;
110
- # define tsrm_tls_set (what ) st_thread_setspecific(tls_key, (void*)(what))
111
- # define tsrm_tls_get () st_thread_getspecific(tls_key)
112
-
113
- #elif defined(TSRM_WIN32 )
97
+ #if defined(TSRM_WIN32 )
114
98
static DWORD tls_key ;
115
99
# define tsrm_tls_set (what ) TlsSetValue(tls_key, (void*)(what))
116
100
# define tsrm_tls_get () TlsGetValue(tls_key)
117
-
118
101
#else
119
- # define tsrm_tls_set ( what )
120
- # define tsrm_tls_get ( ) NULL
121
- # warning tsrm_set_interpreter_context is probably broken on this platform
102
+ static pthread_key_t tls_key ;
103
+ # define tsrm_tls_set ( what ) pthread_setspecific(tls_key, (void*)(what))
104
+ # define tsrm_tls_get () pthread_getspecific(tls_key)
122
105
#endif
123
106
124
107
TSRM_TLS uint8_t in_main_thread = 0 ;
125
108
126
109
/* Startup TSRM (call once for the entire process) */
127
110
TSRM_API int tsrm_startup (int expected_threads , int expected_resources , int debug_level , char * debug_filename )
128
111
{/*{{{*/
129
- #if defined(GNUPTH )
130
- pth_init ();
131
- pth_key_create (& tls_key , 0 );
132
- #elif defined(PTHREADS )
133
- pthread_key_create ( & tls_key , 0 );
134
- #elif defined(TSRM_ST )
135
- st_init ();
136
- st_key_create (& tls_key , 0 );
137
- #elif defined(TSRM_WIN32 )
112
+ #if defined(TSRM_WIN32 )
138
113
tls_key = TlsAlloc ();
114
+ #else
115
+ pthread_key_create (& tls_key , 0 );
139
116
#endif
140
117
141
118
/* ensure singleton */
@@ -218,13 +195,11 @@ TSRM_API void tsrm_shutdown(void)
218
195
if (tsrm_error_file != stderr ) {
219
196
fclose (tsrm_error_file );
220
197
}
221
- #if defined(GNUPTH )
222
- pth_kill ( );
223
- #elif defined( PTHREADS )
198
+ #if defined(TSRM_WIN32 )
199
+ TlsFree ( tls_key );
200
+ #else
224
201
pthread_setspecific (tls_key , 0 );
225
202
pthread_key_delete (tls_key );
226
- #elif defined(TSRM_WIN32 )
227
- TlsFree (tls_key );
228
203
#endif
229
204
if (tsrm_shutdown_handler ) {
230
205
tsrm_shutdown_handler ();
@@ -471,67 +446,6 @@ TSRM_API void *ts_resource_ex(ts_rsrc_id id, THREAD_T *th_id)
471
446
TSRM_SAFE_RETURN_RSRC (thread_resources -> storage , id , thread_resources -> count );
472
447
}/*}}}*/
473
448
474
- /* frees an interpreter context. You are responsible for making sure that
475
- * it is not linked into the TSRM hash, and not marked as the current interpreter */
476
- void tsrm_free_interpreter_context (void * context )
477
- {/*{{{*/
478
- tsrm_tls_entry * next , * thread_resources = (tsrm_tls_entry * )context ;
479
- int i ;
480
-
481
- while (thread_resources ) {
482
- next = thread_resources -> next ;
483
-
484
- for (i = 0 ; i < thread_resources -> count ; i ++ ) {
485
- if (resource_types_table [i ].dtor ) {
486
- resource_types_table [i ].dtor (thread_resources -> storage [i ]);
487
- }
488
- }
489
- for (i = 0 ; i < thread_resources -> count ; i ++ ) {
490
- if (!resource_types_table [i ].fast_offset ) {
491
- free (thread_resources -> storage [i ]);
492
- }
493
- }
494
- free (thread_resources -> storage );
495
- free (thread_resources );
496
- thread_resources = next ;
497
- }
498
- }/*}}}*/
499
-
500
- void * tsrm_set_interpreter_context (void * new_ctx )
501
- {/*{{{*/
502
- tsrm_tls_entry * current ;
503
-
504
- current = tsrm_tls_get ();
505
-
506
- /* TODO: unlink current from the global linked list, and replace it
507
- * it with the new context, protected by mutex where/if appropriate */
508
-
509
- /* Set thread local storage to this new thread resources structure */
510
- tsrm_tls_set (new_ctx );
511
-
512
- /* return old context, so caller can restore it when they're done */
513
- return current ;
514
- }/*}}}*/
515
-
516
-
517
- /* allocates a new interpreter context */
518
- void * tsrm_new_interpreter_context (void )
519
- {/*{{{*/
520
- tsrm_tls_entry * new_ctx , * current ;
521
- THREAD_T thread_id ;
522
-
523
- thread_id = tsrm_thread_id ();
524
- tsrm_mutex_lock (tsmm_mutex );
525
-
526
- current = tsrm_tls_get ();
527
-
528
- allocate_new_resource (& new_ctx , thread_id );
529
-
530
- /* switch back to the context that was in use prior to our creation
531
- * of the new one */
532
- return tsrm_set_interpreter_context (current );
533
- }/*}}}*/
534
-
535
449
536
450
/* frees all resources allocated for the current thread */
537
451
void ts_free_thread (void )
@@ -661,8 +575,6 @@ void ts_free_id(ts_rsrc_id id)
661
575
}/*}}}*/
662
576
663
577
664
-
665
-
666
578
/*
667
579
* Utility Functions
668
580
*/
@@ -672,12 +584,8 @@ TSRM_API THREAD_T tsrm_thread_id(void)
672
584
{/*{{{*/
673
585
#ifdef TSRM_WIN32
674
586
return GetCurrentThreadId ();
675
- #elif defined(GNUPTH )
676
- return pth_self ();
677
- #elif defined(PTHREADS )
587
+ #else
678
588
return pthread_self ();
679
- #elif defined(TSRM_ST )
680
- return st_thread_self ();
681
589
#endif
682
590
}/*}}}*/
683
591
@@ -689,14 +597,9 @@ TSRM_API MUTEX_T tsrm_mutex_alloc(void)
689
597
#ifdef TSRM_WIN32
690
598
mutexp = malloc (sizeof (CRITICAL_SECTION ));
691
599
InitializeCriticalSection (mutexp );
692
- #elif defined(GNUPTH )
693
- mutexp = (MUTEX_T ) malloc (sizeof (* mutexp ));
694
- pth_mutex_init (mutexp );
695
- #elif defined(PTHREADS )
600
+ #else
696
601
mutexp = (pthread_mutex_t * )malloc (sizeof (pthread_mutex_t ));
697
602
pthread_mutex_init (mutexp ,NULL );
698
- #elif defined(TSRM_ST )
699
- mutexp = st_mutex_new ();
700
603
#endif
701
604
#ifdef THR_DEBUG
702
605
printf ("Mutex created thread: %d\n" ,mythreadid ());
@@ -712,13 +615,9 @@ TSRM_API void tsrm_mutex_free(MUTEX_T mutexp)
712
615
#ifdef TSRM_WIN32
713
616
DeleteCriticalSection (mutexp );
714
617
free (mutexp );
715
- #elif defined(GNUPTH )
716
- free (mutexp );
717
- #elif defined(PTHREADS )
618
+ #else
718
619
pthread_mutex_destroy (mutexp );
719
620
free (mutexp );
720
- #elif defined(TSRM_ST )
721
- st_mutex_destroy (mutexp );
722
621
#endif
723
622
}
724
623
#ifdef THR_DEBUG
@@ -737,15 +636,8 @@ TSRM_API int tsrm_mutex_lock(MUTEX_T mutexp)
737
636
#ifdef TSRM_WIN32
738
637
EnterCriticalSection (mutexp );
739
638
return 0 ;
740
- #elif defined(GNUPTH )
741
- if (pth_mutex_acquire (mutexp , 0 , NULL )) {
742
- return 0 ;
743
- }
744
- return -1 ;
745
- #elif defined(PTHREADS )
639
+ #else
746
640
return pthread_mutex_lock (mutexp );
747
- #elif defined(TSRM_ST )
748
- return st_mutex_lock (mutexp );
749
641
#endif
750
642
}/*}}}*/
751
643
@@ -760,15 +652,8 @@ TSRM_API int tsrm_mutex_unlock(MUTEX_T mutexp)
760
652
#ifdef TSRM_WIN32
761
653
LeaveCriticalSection (mutexp );
762
654
return 0 ;
763
- #elif defined(GNUPTH )
764
- if (pth_mutex_release (mutexp )) {
765
- return 0 ;
766
- }
767
- return -1 ;
768
- #elif defined(PTHREADS )
655
+ #else
769
656
return pthread_mutex_unlock (mutexp );
770
- #elif defined(TSRM_ST )
771
- return st_mutex_unlock (mutexp );
772
657
#endif
773
658
}/*}}}*/
774
659
@@ -779,12 +664,8 @@ TSRM_API int tsrm_mutex_unlock(MUTEX_T mutexp)
779
664
TSRM_API int tsrm_sigmask (int how , const sigset_t * set , sigset_t * oldset )
780
665
{/*{{{*/
781
666
TSRM_ERROR ((TSRM_ERROR_LEVEL_INFO , "Changed sigmask in thread: %ld" , tsrm_thread_id ()));
782
- /* TODO: add support for other APIs */
783
- #ifdef PTHREADS
784
- return pthread_sigmask (how , set , oldset );
785
- #else
786
- return sigprocmask (how , set , oldset );
787
- #endif
667
+
668
+ return pthread_sigmask (how , set , oldset );
788
669
}/*}}}*/
789
670
#endif
790
671
@@ -873,16 +754,10 @@ TSRM_API uint8_t tsrm_is_main_thread(void)
873
754
874
755
TSRM_API const char * tsrm_api_name (void )
875
756
{/*{{{*/
876
- #if defined(GNUPTH )
877
- return "GNU Pth" ;
878
- #elif defined(PTHREADS )
879
- return "POSIX Threads" ;
880
- #elif defined(TSRM_ST )
881
- return "State Threads" ;
882
- #elif defined(TSRM_WIN32 )
757
+ #if defined(TSRM_WIN32 )
883
758
return "Windows Threads" ;
884
759
#else
885
- return "Unknown " ;
760
+ return "POSIX Threads " ;
886
761
#endif
887
762
}/*}}}*/
888
763
0 commit comments