diff options
author | wollman <wollman@FreeBSD.org> | 1994-08-26 18:15:25 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-08-26 18:15:25 +0000 |
commit | 411b82456bfea2b958bfc6b27d1669bbc1e020af (patch) | |
tree | a7478f2846bd8622e928def469a8154c39a3111d /sys/kern/init_sysent.c | |
parent | 51f508b8008118bb8c307396428faff37b42cd8b (diff) | |
download | FreeBSD-src-411b82456bfea2b958bfc6b27d1669bbc1e020af.zip FreeBSD-src-411b82456bfea2b958bfc6b27d1669bbc1e020af.tar.gz |
Added ntp_gettime and ntp_adjtime syscalls, both nosys'ed out until
someone gets to re-integrating the code. ntp_gettime() should be
turned into a sysctl variable and emulated in the library.
Diffstat (limited to 'sys/kern/init_sysent.c')
-rw-r--r-- | sys/kern/init_sysent.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/kern/init_sysent.c b/sys/kern/init_sysent.c index 45370dc..c1e55a3 100644 --- a/sys/kern/init_sysent.c +++ b/sys/kern/init_sysent.c @@ -145,6 +145,8 @@ int sysarch(); int shmsys(); #else #endif +int nosys(); +int nosys(); int setgid(); int setegid(); int seteuid(); @@ -451,8 +453,8 @@ struct sysent sysent[] = { { 0, nosys }, /* 172 = nosys */ { 0, nosys }, /* 173 = nosys */ { 0, nosys }, /* 174 = nosys */ - { 0, nosys }, /* 175 = nosys */ - { 0, nosys }, /* 176 = nosys */ + { 1, nosys }, /* 175 = ntp_gettime */ + { 1, nosys }, /* 176 = ntp_adjtime */ { 0, nosys }, /* 177 = nosys */ { 0, nosys }, /* 178 = nosys */ { 0, nosys }, /* 179 = nosys */ |