repo.or.cz
/
valgrind.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add missing zstd.h to coregrind Makefile.am noinst_HEADERS
[valgrind.git]
/
memcheck
/
tests
/
darwin
/
scalar_vfork.c
blob
6cdaa939833eef328b6f8aef70819c696e6203a5
1
#include
"scalar.h"
2
3
int
main
(
void
)
4
{
5
int
res
;
6
7
// __NR_vfork --> __NR_fork [we can't use vfork()]
8
GO
(
__NR_vfork
,
66
,
"0e"
);
9
SY
(
__NR_vfork
);
10
11
return
(
0
);
12
}
13