This commit is contained in:
twinaphex 2020-12-28 19:58:13 +01:00
parent 4bf28dc86a
commit 12f050f490
6 changed files with 10 additions and 10 deletions

View file

@ -175,6 +175,10 @@ retro_perf_tick_t cpu_features_get_perf_counter(void)
tv_sec = (long)((ularge.QuadPart - epoch) / 10000000L);
tv_usec = (long)(system_time.wMilliseconds * 1000);
time_ticks = (1000000 * tv_sec + tv_usec);
#elif defined(GEKKO)
time_ticks = gettime();
#elif defined(_XBOX360) || defined(__powerpc__) || defined(__ppc__) || defined(__POWERPC__) || defined(__PSL1GHT__) || defined(__PPC64__) || defined(__powerpc64__)
time_ticks = __mftb();
#elif defined(_POSIX_MONOTONIC_CLOCK) || defined(__QNX__) || defined(ANDROID) || defined(__MACH__)
struct timespec tv = {0};
if (ra_clock_gettime(CLOCK_MONOTONIC, &tv) == 0)
@ -189,10 +193,6 @@ retro_perf_tick_t cpu_features_get_perf_counter(void)
time_ticks = (retro_perf_tick_t)a | ((retro_perf_tick_t)d << 32);
#elif defined(__ARM_ARCH_6__)
__asm__ volatile( "mrc p15, 0, %0, c9, c13, 0" : "=r"(time_ticks) );
#elif defined(_XBOX360) || defined(__powerpc__) || defined(__ppc__) || defined(__POWERPC__) || defined(__PSL1GHT__)
time_ticks = __mftb();
#elif defined(GEKKO)
time_ticks = gettime();
#elif defined(PSP) || defined(VITA)
time_ticks = sceKernelGetSystemTimeWide();
#elif defined(PS2)

View file

@ -1,7 +1,7 @@
/* Copyright (C) 2010-2020 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (rhash.c).
* The following license statement only applies to this file (lrc_hash.c).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,
@ -27,7 +27,7 @@
#else
#include <unistd.h>
#endif
#include <rhash.h>
#include <lrc_hash.h>
#include <retro_miscellaneous.h>
#include <retro_endianness.h>
#include <streams/file_stream.h>

View file

@ -1,7 +1,7 @@
/* Copyright (C) 2010-2020 The RetroArch team
*
* ---------------------------------------------------------------------------------------
* The following license statement only applies to this file (rhash.h).
* The following license statement only applies to this file (lrc_hash.h).
* ---------------------------------------------------------------------------------------
*
* Permission is hereby granted, free of charge,

View file

@ -37,7 +37,7 @@
#include <stdio.h>
#include <string.h>
#include <rhash.h>
#include <lrc_hash.h>
int main (int argc, char *argv[])
{

View file

@ -19,7 +19,7 @@
#include <stdio.h>
#include <string.h>
#ifdef WIN32
#ifdef _WIN32
#include <io.h>
#endif
#include <fcntl.h>

View file

@ -34,7 +34,7 @@
* optimizations are not included to reduce source code size and avoid
* compile-time configuration.
*/
#include <rhash.h>
#include <lrc_hash.h>
#include <string.h>