2013-03-20 Robert Mason <rbmj@verizon.net>
* config/vxlib-tls.c (__gthread_get_tsd_data,) (__gthread_set_tsd_data, __gthread_enter_tsd_dtor_context,) (__gthread_leave_tsd_dtor_context): Add prototypes. (tls_delete_hook): Update. From-SVN: r196842
This commit is contained in:
parent
813e003617
commit
d2ae19d976
2 changed files with 16 additions and 1 deletions
|
@ -1,3 +1,10 @@
|
|||
2013-03-20 Robert Mason <rbmj@verizon.net>
|
||||
|
||||
* config/vxlib-tls.c (__gthread_get_tsd_data,)
|
||||
(__gthread_set_tsd_data, __gthread_enter_tsd_dtor_context,)
|
||||
(__gthread_leave_tsd_dtor_context): Add prototypes.
|
||||
(tls_delete_hook): Update.
|
||||
|
||||
2013-03-20 Catherine Moore <clm@codesourcery.com>
|
||||
Joseph Myers <joseph@codesourcery.com>
|
||||
Chao-ying Fu <fu@mips.com>
|
||||
|
|
|
@ -102,6 +102,14 @@ extern void __gthread_set_tls_data (void *data);
|
|||
extern void __gthread_enter_tls_dtor_context (void);
|
||||
extern void __gthread_leave_tls_dtor_context (void);
|
||||
|
||||
#ifndef __RTP__
|
||||
|
||||
extern void *__gthread_get_tsd_data (WIND_TCB *tcb);
|
||||
extern void __gthread_set_tsd_data (WIND_TCB *tcb, void *data);
|
||||
extern void __gthread_enter_tsd_dtor_context (WIND_TCB *tcb);
|
||||
extern void __gthread_leave_tsd_dtor_context (WIND_TCB *tcb);
|
||||
|
||||
#endif /* __RTP__ */
|
||||
|
||||
/* This is a global structure which records all of the active keys.
|
||||
|
||||
|
@ -185,7 +193,7 @@ tls_delete_hook (void *tcb ATTRIBUTE_UNUSED)
|
|||
#ifdef __RTP__
|
||||
__gthread_leave_tls_dtor_context ();
|
||||
#else
|
||||
__gthread_leave_tsd_dtor_context ();
|
||||
__gthread_leave_tsd_dtor_context (tcb);
|
||||
#endif
|
||||
|
||||
#ifdef __RTP__
|
||||
|
|
Loading…
Add table
Reference in a new issue