NFSCLIENT -> NFS
This commit is contained in:
parent
ec15ba06cb
commit
55ee7ceeb8
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: kern_time.c,v 1.25 1997/01/15 01:37:53 perry Exp $ */
|
||||
/* $NetBSD: kern_time.c,v 1.26 1997/01/31 02:34:23 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Copyright (c) 1982, 1986, 1989, 1993
|
||||
|
@ -47,7 +47,7 @@
|
|||
#include <sys/mount.h>
|
||||
#include <sys/syscallargs.h>
|
||||
|
||||
#if defined(NFSCLIENT) || defined(NFSSERVER)
|
||||
#if defined(NFS) || defined(NFSSERVER)
|
||||
#include <nfs/rpcv2.h>
|
||||
#include <nfs/nfsproto.h>
|
||||
#include <nfs/nfs_var.h>
|
||||
|
@ -83,7 +83,7 @@ settime(tv)
|
|||
(void) splsoftclock();
|
||||
timeradd(&boottime, &delta, &boottime);
|
||||
timeradd(&runtime, &delta, &runtime);
|
||||
# if defined(NFSCLIENT) || defined(NFSSERVER)
|
||||
# if defined(NFS) || defined(NFSSERVER)
|
||||
nqnfs_lease_updatetime(delta.tv_sec);
|
||||
# endif
|
||||
splx(s);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
$NetBSD: syscalls.master,v 1.46 1996/12/22 08:04:06 cgd Exp $
|
||||
$NetBSD: syscalls.master,v 1.47 1997/01/31 02:34:53 thorpej Exp $
|
||||
|
||||
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
|
||||
|
||||
|
@ -277,7 +277,7 @@
|
|||
152 UNIMPL
|
||||
153 UNIMPL
|
||||
154 UNIMPL
|
||||
#if defined(NFSCLIENT) || defined(NFSSERVER)
|
||||
#if defined(NFS) || defined(NFSSERVER)
|
||||
155 STD { int sys_nfssvc(int flag, void *argp); }
|
||||
#else
|
||||
155 UNIMPL
|
||||
|
@ -289,7 +289,7 @@
|
|||
158 STD { int sys_fstatfs(int fd, struct statfs *buf); }
|
||||
159 UNIMPL
|
||||
160 UNIMPL
|
||||
#if defined(NFSCLIENT) || defined(NFSSERVER)
|
||||
#if defined(NFS) || defined(NFSSERVER)
|
||||
161 STD { int sys_getfh(const char *fname, fhandle_t *fhp); }
|
||||
#else
|
||||
161 UNIMPL getfh
|
||||
|
|
Loading…
Reference in New Issue