kernel: restore setting KTS_NONE
[minix.git] / servers / pfs / utility.c
blob8101990b7b70a8e643e5430a6d1d10a732b1c4ff
1 #include "fs.h"
4 /*===========================================================================*
5 * no_sys *
6 *===========================================================================*/
7 int no_sys(message *pfs_m_in, message *pfs_m_out)
9 /* Somebody has used an illegal system call number */
10 printf("no_sys: invalid call 0x%x to pfs\n", req_nr);
11 return(EINVAL);
15 /*===========================================================================*
16 * clock_time *
17 *===========================================================================*/
18 time_t clock_time()
20 /* This routine returns the time in seconds since 1.1.1970. MINIX is an
21 * astrophysically naive system that assumes the earth rotates at a constant
22 * rate and that such things as leap seconds do not exist.
25 int r;
26 clock_t uptime; /* Uptime in ticks */
27 time_t boottime;
29 if ((r = getuptime2(&uptime, &boottime)) != OK)
30 panic("clock_time: getuptme2 failed: %d", r);
32 return( (time_t) (boottime + (uptime/sys_hz())));