repo.or.cz
/
trinity.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
split up constants.h some
[trinity.git]
/
syscalls
/
vfork.c
blob
be4790746734d36e1643c6a3edac04d457035a65
1
/*
2
int sys_vfork(struct pt_regs *regs)
3
*/
4
#include
"sanitise.h"
5
6
struct
syscallentry syscall_vfork
= {
7
.
name
=
"vfork"
,
8
.
num_args
=
1
,
9
.
flags
=
AVOID_SYSCALL
,
// No args, confuses fuzzer
10
.
arg1name
=
"regs"
,
11
};