diff options
Diffstat (limited to 'emu/Nt')
| -rw-r--r-- | emu/Nt/ie-os.c | 19 | ||||
| -rw-r--r-- | emu/Nt/os.c | 13 |
2 files changed, 6 insertions, 26 deletions
diff --git a/emu/Nt/ie-os.c b/emu/Nt/ie-os.c index 20641a95..39898d0f 100644 --- a/emu/Nt/ie-os.c +++ b/emu/Nt/ie-os.c @@ -696,19 +696,6 @@ tm2sec(SYSTEMTIME *tm) return secs; } -long -time(long *tp) -{ - SYSTEMTIME tm; - long t; - - GetSystemTime(&tm); - t = tm2sec(&tm); - if(tp != nil) - *tp = t; - return t; -} - /* * Return the time since the epoch in microseconds * The epoch is defined at 1 Jan 1970 @@ -724,6 +711,12 @@ osusectime(void) return secs * 1000000 + tm.wMilliseconds * 1000; } +vlong +osnsec(void) +{ + return osusectime()*1000; /* TO DO better */ +} + int osmillisleep(ulong milsec) { diff --git a/emu/Nt/os.c b/emu/Nt/os.c index 3f7156d9..e3d2c663 100644 --- a/emu/Nt/os.c +++ b/emu/Nt/os.c @@ -645,19 +645,6 @@ tm2sec(SYSTEMTIME *tm) return secs; } -long -time(long *tp) -{ - SYSTEMTIME tm; - long t; - - GetSystemTime(&tm); - t = tm2sec(&tm); - if(tp != nil) - *tp = t; - return t; -} - /* * Return the time since the epoch in microseconds * The epoch is defined at 1 Jan 1970 |
