diff options
author | 2006-09-22 17:35:41 +0000 | |
---|---|---|
committer | 2006-09-22 17:35:41 +0000 | |
commit | a3bd88157b85b190e6935b501776a5807f51c6ec (patch) | |
tree | d132e4cc51bb3c215eeea4628494c02b491e38da | |
parent | Back out change in rev 1.15 of to allow whitespace to separate a (diff) | |
download | wireguard-openbsd-a3bd88157b85b190e6935b501776a5807f51c6ec.tar.xz wireguard-openbsd-a3bd88157b85b190e6935b501776a5807f51c6ec.zip |
Put the LFS syscall stubs back in, turns out libc is unable to build
without those, even though they're currently not implemented
-rw-r--r-- | sys/kern/syscalls.master | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 0a093b798b8..9258062ef34 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.85 2006/09/22 14:36:24 pedro Exp $ +; $OpenBSD: syscalls.master,v 1.86 2006/09/22 17:35:41 pedro Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -346,10 +346,19 @@ 181 STD { int sys_setgid(gid_t gid); } 182 STD { int sys_setegid(gid_t egid); } 183 STD { int sys_seteuid(uid_t euid); } +#ifdef LFS +184 STD { int lfs_bmapv(fsid_t *fsidp, \ + struct block_info *blkiov, int blkcnt); } +185 STD { int lfs_markv(fsid_t *fsidp, \ + struct block_info *blkiov, int blkcnt); } +186 STD { int lfs_segclean(fsid_t *fsidp, u_long segment); } +187 STD { int lfs_segwait(fsid_t *fsidp, struct timeval *tv); } +#else 184 UNIMPL 185 UNIMPL 186 UNIMPL 187 UNIMPL +#endif 188 COMPAT_35 { int sys_stat(const char *path, struct stat35 *ub); } \ stat35 189 COMPAT_35 { int sys_fstat(int fd, struct stat35 *sb); } \ |