use DUMMY macro and support from linux_util.h

This commit is contained in:
gallatin 2000-11-01 23:13:49 +00:00
parent e340707e93
commit 3f807ea577

View File

@ -35,22 +35,8 @@
#include <alpha/linux/linux.h>
#include <linux_proto.h>
#include <compat/linux/linux_util.h>
#define DUMMY(s) \
int \
linux_ ## s(struct proc *p, struct linux_ ## s ## _args *args) \
{ \
return (unsupported_msg(p, #s)); \
} \
struct __hack
static int
unsupported_msg(struct proc *p, const char *fname)
{
printf("linux: syscall %s is obsoleted or not implemented (pid=%ld)\n",
fname, (long)p->p_pid);
return (ENOSYS);
}
DUMMY(mount);
DUMMY(umount);