Commit 25d24447 by David Edelsohn Committed by David Edelsohn

allocator.cc: Protect _S_get_thread_id() and _S_thread_key_destr() with #ifdef __GTHREADS.

        * src/allocator.cc: Protect _S_get_thread_id() and
        _S_thread_key_destr() with #ifdef __GTHREADS.

From-SVN: r76977
parent 40ca90bf
2004-01-30 David Edelsohn <edelsohn@gnu.org>
* src/allocator.cc: Protect _S_get_thread_id() and
_S_thread_key_destr() with #ifdef __GTHREADS.
2004-01-30 Paolo Carlini <pcarlini@suse.de>
Reshuffle performance testsuite.
......
......@@ -46,11 +46,13 @@ namespace __gnu_cxx
template
void __mt_alloc<char>::_S_init();
#ifdef __GTHREADS
template
size_t __mt_alloc<char>::_S_get_thread_id();
template
void __mt_alloc<char>::_S_thread_key_destr(void*);
#endif
// Static members of __pool_alloc.
template class __pool_alloc<true, 0>;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment