mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
bf4de8f367
avoid warning. * io/pwd.c (main): Likewise. * iconvdata/tst-table-from.c (main): Likewise. * ctype/test_ctype.c (main): Likewise. * setjmp/tst-setjmp.c (main): Likewise. * signal/tst-signal.c (main): Likewise. * stdlib/tst-strtol.c (main): Likewise. * stdlib/tst-strtod.c (main): Likewise. * stdlib/tst-strtoll.c (main): Likewise. * stdlib/tst-xpg-basename.c (main): Likewise. * dirent/tst-seekdir.c (main): Likewise. * grp/testgrp.c (main): Likewise. * inet/test_ifindex.c (main): Likewise. * io/test-utime.c (main): Likewise. * posix/test-vfork.c (main): Likewise. * posix/testfnm.c (main): Likewise. * stdio-common/temptest.c (main): Likewise. * stdio-common/test_rdwr.c (main): Likewise. * stdio-common/tst-fileno.c (main): Likewise. * stdio-common/tst-sscanf.c (main): Likewise. * stdio-common/tstscanf.c (main): Likewise. * string/bug-strncat1.c (main): Likewise. * string/bug-strpbrk1.c (main): Likewise. * string/bug-strspn1.c (main): Likewise. * string/test-ffs.c (main): Likewise. * string/tst-inlcall.c (main): Likewise. * string/tst-svc.c (main): Likewise. * timezone/test-tz.c (main): Likewise. * wctype/test_wcfuncs.c (main): Likewise. * wctype/test_wctype.c (main): Likewise. * stdlib/tst-random.c: Add attribute noreturn to fail.
43 lines
746 B
C
43 lines
746 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <unistd.h>
|
|
#include <error.h>
|
|
#include <errno.h>
|
|
#include <sys/wait.h>
|
|
|
|
void 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 ()
|
|
{
|
|
}
|