From 70c1d04b2a8f2f48c51df8f9254650c242dc06d2 Mon Sep 17 00:00:00 2001 From: gbeauche <> Date: Sun, 28 Dec 2003 17:56:03 +0000 Subject: [PATCH] Declare timing functions from timer_unix.cpp --- SheepShaver/src/Unix/sysdeps.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SheepShaver/src/Unix/sysdeps.h b/SheepShaver/src/Unix/sysdeps.h index d9f3b897..722476f6 100644 --- a/SheepShaver/src/Unix/sysdeps.h +++ b/SheepShaver/src/Unix/sysdeps.h @@ -344,6 +344,10 @@ typedef struct timespec tm_time_t; typedef struct timeval tm_time_t; #endif +// Timing functions +extern uint64 GetTicks_usec(void); +extern void Delay_usec(uint32 usec); + // Setup pthread attributes extern void Set_pthread_attr(pthread_attr_t *attr, int priority);