diff options
author | marcel <marcel@FreeBSD.org> | 1999-08-16 11:49:30 +0000 |
---|---|---|
committer | marcel <marcel@FreeBSD.org> | 1999-08-16 11:49:30 +0000 |
commit | bb62e6fb8596301eafd991549ca8e8d483a626b5 (patch) | |
tree | 7ecaa95058df8069c383503d881fc6c360b9a7f8 /sys/i386/linux/linux_sysent.c | |
parent | f909574334998e6f81a18fb4c70e45f9cc371aa8 (diff) | |
download | FreeBSD-src-bb62e6fb8596301eafd991549ca8e8d483a626b5.zip FreeBSD-src-bb62e6fb8596301eafd991549ca8e8d483a626b5.tar.gz |
Implement linux_vfork() syscall by calling vfork(). Analogous to the
linux_fork() implementation.
Diffstat (limited to 'sys/i386/linux/linux_sysent.c')
-rw-r--r-- | sys/i386/linux/linux_sysent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/linux/linux_sysent.c b/sys/i386/linux/linux_sysent.c index 41cce48..a98b32f 100644 --- a/sys/i386/linux/linux_sysent.c +++ b/sys/i386/linux/linux_sysent.c @@ -2,7 +2,7 @@ * System call switch table. * * DO NOT EDIT-- this file is automatically generated. - * created from Id: syscalls.master,v 1.21 1999/08/15 17:25:56 marcel Exp + * created from Id: syscalls.master,v 1.22 1999/08/16 11:47:21 marcel Exp */ #include "opt_compat.h" @@ -204,5 +204,5 @@ struct sysent linux_sysent[] = { { 0, (sy_call_t *)nosys }, /* 187 = sendfile */ { 0, (sy_call_t *)nosys }, /* 188 = getpmsg */ { 0, (sy_call_t *)nosys }, /* 189 = putpmsg */ - { 0, (sy_call_t *)nosys }, /* 190 = vfork */ + { 0, (sy_call_t *)linux_vfork }, /* 190 = linux_vfork */ }; |