mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-11-26 10:49:21 +00:00
Merge branch 'master' of https://github.com/cebix/macemu
This commit is contained in:
commit
bc7cd78467
@ -185,10 +185,10 @@ typedef char * caddr_t;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Time data type for Time Manager emulation */
|
/* Time data type for Time Manager emulation */
|
||||||
#ifdef HAVE_CLOCK_GETTIME
|
#if defined(__MACH__)
|
||||||
typedef struct timespec tm_time_t;
|
|
||||||
#elif defined(__MACH__)
|
|
||||||
typedef mach_timespec_t tm_time_t;
|
typedef mach_timespec_t tm_time_t;
|
||||||
|
#elif defined(HAVE_CLOCK_GETTIME)
|
||||||
|
typedef struct timespec tm_time_t;
|
||||||
#else
|
#else
|
||||||
typedef struct timeval tm_time_t;
|
typedef struct timeval tm_time_t;
|
||||||
#endif
|
#endif
|
||||||
|
@ -57,14 +57,14 @@ static inline void mach_current_time(tm_time_t &t) {
|
|||||||
void Microseconds(uint32 &hi, uint32 &lo)
|
void Microseconds(uint32 &hi, uint32 &lo)
|
||||||
{
|
{
|
||||||
D(bug("Microseconds\n"));
|
D(bug("Microseconds\n"));
|
||||||
#if defined(HAVE_CLOCK_GETTIME)
|
#if defined(__MACH__)
|
||||||
struct timespec t;
|
|
||||||
clock_gettime(CLOCK_REALTIME, &t);
|
|
||||||
uint64 tl = (uint64)t.tv_sec * 1000000 + t.tv_nsec / 1000;
|
|
||||||
#elif defined(__MACH__)
|
|
||||||
tm_time_t t;
|
tm_time_t t;
|
||||||
mach_current_time(t);
|
mach_current_time(t);
|
||||||
uint64 tl = (uint64)t.tv_sec * 1000000 + t.tv_nsec / 1000;
|
uint64 tl = (uint64)t.tv_sec * 1000000 + t.tv_nsec / 1000;
|
||||||
|
#elif defined(HAVE_CLOCK_GETTIME)
|
||||||
|
struct timespec t;
|
||||||
|
clock_gettime(CLOCK_REALTIME, &t);
|
||||||
|
uint64 tl = (uint64)t.tv_sec * 1000000 + t.tv_nsec / 1000;
|
||||||
#else
|
#else
|
||||||
struct timeval t;
|
struct timeval t;
|
||||||
gettimeofday(&t, NULL);
|
gettimeofday(&t, NULL);
|
||||||
@ -91,10 +91,10 @@ uint32 TimerDateTime(void)
|
|||||||
|
|
||||||
void timer_current_time(tm_time_t &t)
|
void timer_current_time(tm_time_t &t)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_CLOCK_GETTIME
|
#if defined(__MACH__)
|
||||||
clock_gettime(CLOCK_REALTIME, &t);
|
|
||||||
#elif defined(__MACH__)
|
|
||||||
mach_current_time(t);
|
mach_current_time(t);
|
||||||
|
#elif defined(HAVE_CLOCK_GETTIME)
|
||||||
|
clock_gettime(CLOCK_REALTIME, &t);
|
||||||
#else
|
#else
|
||||||
gettimeofday(&t, NULL);
|
gettimeofday(&t, NULL);
|
||||||
#endif
|
#endif
|
||||||
@ -229,14 +229,14 @@ int32 timer_host2mac_time(tm_time_t hosttime)
|
|||||||
|
|
||||||
uint64 GetTicks_usec(void)
|
uint64 GetTicks_usec(void)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_CLOCK_GETTIME
|
#if defined(__MACH__)
|
||||||
struct timespec t;
|
|
||||||
clock_gettime(CLOCK_REALTIME, &t);
|
|
||||||
return (uint64)t.tv_sec * 1000000 + t.tv_nsec / 1000;
|
|
||||||
#elif defined(__MACH__)
|
|
||||||
tm_time_t t;
|
tm_time_t t;
|
||||||
mach_current_time(t);
|
mach_current_time(t);
|
||||||
return (uint64)t.tv_sec * 1000000 + t.tv_nsec / 1000;
|
return (uint64)t.tv_sec * 1000000 + t.tv_nsec / 1000;
|
||||||
|
#elif defined(HAVE_CLOCK_GETTIME)
|
||||||
|
struct timespec t;
|
||||||
|
clock_gettime(CLOCK_REALTIME, &t);
|
||||||
|
return (uint64)t.tv_sec * 1000000 + t.tv_nsec / 1000;
|
||||||
#else
|
#else
|
||||||
struct timeval t;
|
struct timeval t;
|
||||||
gettimeofday(&t, NULL);
|
gettimeofday(&t, NULL);
|
||||||
|
Loading…
Reference in New Issue
Block a user