diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2005-03-31 22:17:42 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2005-03-31 22:17:42 +0000 |
commit | 83f733eecbec67f466cf766194527388d62dbbbe (patch) | |
tree | 91b822482195310fe9bec1157500123772c93da5 /sys/compat | |
parent | a7affabe3a4969ee0f3eab0f6aa6d5b1ac66d70f (diff) |
Notes
Diffstat (limited to 'sys/compat')
-rw-r--r-- | sys/compat/linux/linux_misc.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 9e3ab8dabbcf9..7bb2f2f341f90 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -74,6 +74,8 @@ __FBSDID("$FreeBSD$"); #include "opt_compat.h" +#include <compat/linux/linux_sysproto.h> + #ifdef COMPAT_LINUX32 #include <machine/../linux32/linux.h> #include <machine/../linux32/linux32_proto.h> @@ -1429,3 +1431,10 @@ linux_getsid(struct thread *td, struct linux_getsid_args *args) bsd.pid = args->pid; return getsid(td, &bsd); } + +int +linux_nosys(struct thread *td, struct nosys_args *ignore) +{ + + return (ENOSYS); +} |