PKUOS - Pintos
Pintos source browser for PKU Operating System course
child-simple.c
Go to the documentation of this file.
1/** Child process run by exec-multiple, exec-one, wait-simple, and
2 wait-twice tests.
3 Just prints a single message and terminates. */
4
5#include <stdio.h>
6#include "tests/lib.h"
7
8const char *test_name = "child-simple";
9
10int
11main (void)
12{
13 msg ("run");
14 return 81;
15}
int main(void)
Definition: child-simple.c:11
const char * test_name
Child process run by exec-multiple, exec-one, wait-simple, and wait-twice tests.
Definition: child-simple.c:8
void msg(const char *format,...)
Definition: lib.c:28