diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-08-14 22:34:04 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-08-14 22:34:04 +0000 |
commit | f2c05b9ecf4493d2b25c25fcd75aed0ec60cc473 (patch) | |
tree | 8d6b59837e4a1e0adec91093a32ed32df2e9a8b6 /sysdeps/unix/sysv/linux/s390 | |
parent | dee7d1e9d063dfd1bdbbd44110c5ce36adbc8ba5 (diff) | |
download | glibc-f2c05b9ecf4493d2b25c25fcd75aed0ec60cc473.tar.gz glibc-f2c05b9ecf4493d2b25c25fcd75aed0ec60cc473.tar.xz glibc-f2c05b9ecf4493d2b25c25fcd75aed0ec60cc473.zip |
Remove __ASSUME_CLONE_THREAD_FLAGS.
Diffstat (limited to 'sysdeps/unix/sysv/linux/s390')
-rw-r--r-- | sysdeps/unix/sysv/linux/s390/system.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/s390/system.c b/sysdeps/unix/sysv/linux/s390/system.c index f63584c26b..66f96617eb 100644 --- a/sysdeps/unix/sysv/linux/s390/system.c +++ b/sysdeps/unix/sysv/linux/s390/system.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2003 Free Software Foundation, Inc. +/* Copyright (C) 2003-2012 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 @@ -25,9 +25,7 @@ return. It might still be in the kernel when the cancellation request comes. Therefore we have to use the clone() calls ability to have the kernel write the PID into the user-level variable. */ -#ifdef __ASSUME_CLONE_THREAD_FLAGS -# define FORK() \ +#define FORK() \ INLINE_SYSCALL (clone, 3, 0, CLONE_PARENT_SETTID | SIGCHLD, &pid) -#endif #include "../system.c" |