MCPcopy Index your code
hub / github.com/MapServer/MapServer / msGettimeofday

Function msGettimeofday

maptime.c:128–135  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126#if defined(_WIN32) && !defined(__CYGWIN__)
127#include <sys/timeb.h>
128void msGettimeofday(struct mstimeval* tp, void* tzp)
129{
130 struct _timeb theTime;
131
132 _ftime(&theTime);
133 tp->tv_sec = theTime.time;
134 tp->tv_usec = theTime.millitm * 1000;
135}
136#endif
137
138#if defined(_WIN32) && !defined(__CYGWIN__)

Callers 7

msDrawMapFunction · 0.85
mainFunction · 0.85
mainFunction · 0.85
msLoadMapFromStringFunction · 0.85
mapfile.cFile · 0.85
msSaveImageFunction · 0.85
msDebugFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected