Actually enable NTP kernel PLL. (Oops!)

Noticed by Pete Carah.
This commit is contained in:
wollman 1994-12-14 17:57:47 +00:00
parent 0c6fb6f88c
commit ead50efbdb
3 changed files with 5 additions and 4 deletions

View File

@ -154,6 +154,7 @@ int msgsys();
int shmsys();
#else
#endif
int ntp_adjtime();
int setgid();
int setegid();
int seteuid();
@ -459,7 +460,7 @@ struct sysent sysent[] = {
{ 0, nosys }, /* 173 = nosys */
{ 0, nosys }, /* 174 = nosys */
{ 0, nosys }, /* 175 = nosys */
{ 1, nosys }, /* 176 = ntp_adjtime */
{ 1, ntp_adjtime }, /* 176 = ntp_adjtime */
{ 0, nosys }, /* 177 = nosys */
{ 0, nosys }, /* 178 = nosys */
{ 0, nosys }, /* 179 = nosys */

View File

@ -1,4 +1,4 @@
$Id: syscalls.master,v 1.10 1994/09/28 22:44:47 wollman Exp $
$Id: syscalls.master,v 1.11 1994/10/02 04:45:52 davidg Exp $
; from: @(#)syscalls.master 8.2 (Berkeley) 1/13/94
;
; System call name/number master file.
@ -241,7 +241,7 @@
173 UNIMPL 0 NOHIDE nosys
174 UNIMPL 0 NOHIDE nosys
175 UNIMPL 0 NOHIDE nosys
176 STD 1 BSD nosys ntp_adjtime
176 STD 1 BSD ntp_adjtime
177 UNIMPL 0 NOHIDE nosys
178 UNIMPL 0 NOHIDE nosys
179 UNIMPL 0 NOHIDE nosys

View File

@ -188,7 +188,7 @@ HIDE_BSD(shmsys)
#else
HIDE_BSD(nosys)
#endif
HIDE_BSD(nosys)
HIDE_BSD(ntp_adjtime)
HIDE_POSIX(setgid)
HIDE_BSD(setegid)
HIDE_BSD(seteuid)