diff options
author | Zack Weinberg <zackw@panix.com> | 2017-06-08 15:39:03 -0400 |
---|---|---|
committer | Zack Weinberg <zackw@panix.com> | 2017-06-08 15:39:03 -0400 |
commit | 5046dbb4a7eba5eccfd258f92f4735c9ffc8d069 (patch) | |
tree | 4470480d904b65cf14ca524f96f79eca818c3eaf /posix/test-vfork.c | |
parent | 199fc19d3aaaf57944ef036e15904febe877fc93 (diff) | |
download | glibc-zack/build-layout-experiment.tar glibc-zack/build-layout-experiment.tar.gz glibc-zack/build-layout-experiment.tar.bz2 glibc-zack/build-layout-experiment.zip |
Prepare for radical source tree reorganization.zack/build-layout-experiment
All top-level files and directories are moved into a temporary storage
directory, REORG.TODO, except for files that will certainly still
exist in their current form at top level when we're done (COPYING,
COPYING.LIB, LICENSES, NEWS, README), all old ChangeLog files (which
are moved to the new directory OldChangeLogs, instead), and the
generated file INSTALL (which is just deleted; in the new order, there
will be no generated files checked into version control).
Diffstat (limited to 'posix/test-vfork.c')
-rw-r--r-- | posix/test-vfork.c | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/posix/test-vfork.c b/posix/test-vfork.c deleted file mode 100644 index 6dfb7d47e3..0000000000 --- a/posix/test-vfork.c +++ /dev/null @@ -1,42 +0,0 @@ -#include <stdio.h> -#include <stdlib.h> -#include <unistd.h> -#include <error.h> -#include <errno.h> -#include <sys/wait.h> - -void __attribute_noinline__ noop (void); - -#define NR 2 /* Exit code of the child. */ - -int -main (void) -{ - pid_t pid; - int status; - - printf ("Before vfork\n"); - fflush (stdout); - pid = vfork (); - if (pid == 0) - { - /* This will clobber the return pc from vfork in the parent on - machines where it is stored on the stack, if vfork wasn't - implemented correctly, */ - noop (); - _exit (NR); - } - else if (pid < 0) - error (1, errno, "vfork"); - printf ("After vfork (parent)\n"); - if (waitpid (0, &status, 0) != pid - || !WIFEXITED (status) || WEXITSTATUS (status) != NR) - exit (1); - - return 0; -} - -void -noop (void) -{ -} |