repo.or.cz
/
pintos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Clarify purpose and rationale.
[pintos.git]
/
src
/
tests
/
userprog
/
exec-arg.c
blob
82d074457bce0a259b88970510ae6569d402ca29
1
/* Tests argument passing to child processes. */
2
3
#include <syscall.h>
4
#include
"tests/main.h"
5
6
void
7
test_main
(
void
)
8
{
9
wait
(
exec
(
"child-args childarg"
));
10
}