minor commenting based on syscall environment

This commit is contained in:
dillon 2001-10-26 20:35:52 +00:00
parent ad55ea6afb
commit 2a33aeb491

View File

@ -75,6 +75,9 @@ linux_execve(struct thread *td, struct linux_execve_args *args)
return (execve(td, &bsd));
}
/*
* MPSAFE
*/
int
linux_fork(struct thread *td, struct linux_fork_args *args)
{
@ -93,6 +96,9 @@ linux_fork(struct thread *td, struct linux_fork_args *args)
return (0);
}
/*
* MPSAFE
*/
int
linux_vfork(struct thread *td, struct linux_vfork_args *args)
{