diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-03-10 06:32:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-03-10 06:32:42 +0000 |
commit | cd4b2a553a5e0fa51f2ad74166b12820316ab66e (patch) | |
tree | bb05f3928e28a7f3f716086f121aea39665a7ea1 /nptl/sysdeps/unix/sysv/linux/createthread.c | |
parent | Update. (diff) | |
download | glibc-cd4b2a553a5e0fa51f2ad74166b12820316ab66e.tar.gz glibc-cd4b2a553a5e0fa51f2ad74166b12820316ab66e.tar.bz2 glibc-cd4b2a553a5e0fa51f2ad74166b12820316ab66e.zip |
Update.
* sysdeps/unix/sysv/linux/s390/createthread.c: Moved to...
* sysdeps/unix/sysv/linux/createthread.c: ...here.
Diffstat (limited to 'nptl/sysdeps/unix/sysv/linux/createthread.c')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/createthread.c | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/createthread.c b/nptl/sysdeps/unix/sysv/linux/createthread.c new file mode 100644 index 0000000000..9defac6194 --- /dev/null +++ b/nptl/sysdeps/unix/sysv/linux/createthread.c @@ -0,0 +1,24 @@ +/* Copyright (C) 2003 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Martin Schwidefsky <schwidefsky@de.ibm.com>. + + The GNU C Library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + The GNU C Library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with the GNU C Library; if not, write to the Free + Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA + 02111-1307 USA. */ + +/* Value passed to 'clone' for initialization of the thread register. */ +#define TLS_VALUE pd + +/* Get the real implementation. */ +#include <nptl/sysdeps/pthread/createthread.c> |