glibc/nptl/tst-locale1.c
Ulrich Drepper f077a4a9f0 Update.
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.
2002-12-18 00:53:21 +00:00

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;
}