*** empty log message ***

This commit is contained in:
Elias Naur 2003-08-11 17:33:41 +00:00
parent 177595e4ca
commit f625bea9f0
1 changed files with 4 additions and 4 deletions

View File

@ -44,9 +44,9 @@
#include <sys/resource.h> #include <sys/resource.h>
#include "org_lwjgl_Sys.h" #include "org_lwjgl_Sys.h"
long int hires_timer_freq; // Hires timer frequency static long int hires_timer_freq; // Hires timer frequency
long int hires_timer_start; // Hires timer start static long int hires_timer_start; // Hires timer start
long int hires_timer; // Hires timer current time static long int hires_timer; // Hires timer current time
/* /*
* Class: org_lwjgl_Sys * Class: org_lwjgl_Sys
@ -59,7 +59,7 @@ JNIEXPORT jlong JNICALL Java_org_lwjgl_Sys_getTimerResolution
return hires_timer_freq; return hires_timer_freq;
} }
long queryTime(void) { static long queryTime(void) {
struct timeval tv; struct timeval tv;
if (gettimeofday(&tv, NULL) == -1) { if (gettimeofday(&tv, NULL) == -1) {
#ifdef _DEBUG #ifdef _DEBUG