mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-12 14:20:04 +00:00
really x86-linux specific, but fixing it all properly will have to wait for another day. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3615
16 lines
235 B
C
16 lines
235 B
C
#include "scalar.h"
|
|
|
|
int main(void)
|
|
{
|
|
int res;
|
|
|
|
// All __NR_xxx numbers are taken from x86
|
|
|
|
// __NR_vfork 190 --> arch/sys_fork() [we can't use sys_vfork()]
|
|
GO(__NR_vfork, "0e");
|
|
SY(__NR_vfork);
|
|
|
|
return(0);
|
|
}
|
|
|