This repository has been archived on 2021-05-26. You can view files and clone it, but cannot push or open issues or pull requests.
OS/pintos-env/pintos/tests/userprog/child-simple.c

15 lines
272 B
C
Executable file

/* Child process run by exec-multiple, exec-one, wait-simple, and
wait-twice tests.
Just prints a single message and terminates. */
#include <stdio.h>
#include "tests/lib.h"
const char *test_name = "child-simple";
int
main (void)
{
msg ("run");
return 81;
}