Changes should not affect build. Ongoing work to make the stopwatch code build on Unix.

This commit is contained in:
nisheeth%netscape.com 1999-10-20 18:43:34 +00:00
Родитель f0ddb93dbc
Коммит 36d1076a0a
2 изменённых файлов: 6 добавлений и 3 удалений

Просмотреть файл

@ -1,5 +1,6 @@
#ifndef __STOPWATCH_H #ifndef __STOPWATCH_H
#define __STOPWATCH_H #define __STOPWATCH_H
#include "xp_core.h"
#include "nscore.h" #include "nscore.h"
#include "prlog.h" #include "prlog.h"
#include "nsDeque.h" #include "nsDeque.h"

Просмотреть файл

@ -1,7 +1,9 @@
#include "windows.h"
#include <stdio.h>
#include "stopwatch.h" #include "stopwatch.h"
#include <stdio.h>
#include <time.h> #include <time.h>
#ifdef XP_WIN
#include "windows.h"
#endif
Stopwatch::Stopwatch() { Stopwatch::Stopwatch() {
@ -179,7 +181,7 @@ double Stopwatch::GetCPUTime(){
ret = GetProcessTimes (hProcess, &ftCreate, &ftExit, ret = GetProcessTimes (hProcess, &ftCreate, &ftExit,
&ftKernel.ftFileTime, &ftKernel.ftFileTime,
&ftUser.ftFileTime); &ftUser.ftFileTime);
if (ret != TRUE){ if (ret != PR_TRUE){
ret = GetLastError (); ret = GetLastError ();
printf("%s 0x%lx\n"," Error on GetProcessTimes", (int)ret); printf("%s 0x%lx\n"," Error on GetProcessTimes", (int)ret);
} }