diff options
| author | Peter Chubb <peterc@gelato.unsw.edu.au> | 2004-11-01 23:00:11 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2004-11-01 23:00:11 -0800 |
| commit | bad9a5ae0eda42e87520ed4eecb6458da763f1f8 (patch) | |
| tree | b23f53e21e03dcc62a9efd056161c7ca8a887bc0 /kernel/Makefile | |
| parent | 2fdb873aa9ead8d91d777db1f3632cec890cd86b (diff) | |
[PATCH] standalone sys_ni.c for not-implemented syscalls
Sticking the not-implemented syscall stuff in sys.c is a pain because the
cond_syscall()s explode when certain prototypes are in scope. And we need
those prototypes' header files for the C code in sys.c.
Fix all that up by moving all the sys_ni_syscall code into its own .c file.
Signed-off-by: Peter Chubb <peterc@gelato.unsw.edu.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'kernel/Makefile')
| -rw-r--r-- | kernel/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index abab504f01e1..db7281f1f087 100644 --- a/kernel/Makefile +++ b/kernel/Makefile @@ -7,7 +7,7 @@ obj-y = sched.o fork.o exec_domain.o panic.o printk.o profile.o \ sysctl.o capability.o ptrace.o timer.o user.o \ signal.o sys.o kmod.o workqueue.o pid.o \ rcupdate.o intermodule.o extable.o params.o posix-timers.o \ - kthread.o wait.o kfifo.o + kthread.o wait.o kfifo.o sys_ni.o obj-$(CONFIG_FUTEX) += futex.o obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o |
