random: Fix behavior of kernel option "-rs".
[pintos-anon] / src / tests / userprog / wait-twice.c
1 /* Wait for a subprocess to finish, twice.
2    The first call must wait in the usual way and return the exit code.
3    The second wait call must return -1 immediately. */
4
5 #include <syscall.h>
6 #include "tests/lib.h"
7 #include "tests/main.h"
8
9 void
10 test_main (void) 
11 {
12   pid_t child = exec ("child-simple");
13   msg ("wait(exec()) = %d", wait (child));
14   msg ("wait(exec()) = %d", wait (child));
15 }