+2002-01-14 Andreas Jaeger <aj@suse.de>
+
+ * sysdeps/x86_64/pt-machine.h (INIT_THREAD_SELF): Avoid warning.
+
2002-01-11 Andreas Schwab <schwab@suse.de>
* signals.c (sighandler): Initialize all elements to SIG_ERR.
/* Machine-dependent pthreads configuration and inline functions.
x86-64 version.
- Copyright (C) 2001 Free Software Foundation, Inc.
+ Copyright (C) 2001, 2002 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
/* Initialize the thread-unique value. */
#define INIT_THREAD_SELF(descr, nr) \
{ \
- if (__arch_prctl (ARCH_SET_GS, descr) != 0) \
+ if (__arch_prctl (ARCH_SET_GS, (unsigned long)descr) != 0) \
abort (); \
}