mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 12:50:05 +00:00
f077a4a9f0
2002-12-17 Jakub Jelinek <jakub@redhat.com> * malloc/thread-m.h (mutex_init, mutex_lock, mutex_trylock, mutex_unlock): If not building NPTL, use __libc_maybe_call2 if available, otherwise __libc_maybe_call. * sysdeps/unix/sysv/linux/x86_64/recv.c: Add support for cancellation handling. * sysdeps/unix/sysv/linux/x86_64/send.c: Likewise.
18 lines
410 B
C
18 lines
410 B
C
/* Test that the thread-local locale works right in the main thread
|
|
when statically linked. */
|
|
|
|
#include "../locale/tst-C-locale.c"
|
|
|
|
#include <pthread.h>
|
|
#include <signal.h>
|
|
|
|
/* This is never called, just here to get pthreads linked in. */
|
|
int
|
|
useless (void)
|
|
{
|
|
pthread_create (0, 0, 0, 0);
|
|
/* This is to check __libc_current_sigrt* can be used in statically
|
|
linked apps. */
|
|
return SIGRTMIN;
|
|
}
|