MCPcopy Create free account
hub / github.com/GarageGames/Torque2D / android_StartupTime

Function android_StartupTime

engine/source/platformAndroid/AndroidTime.cpp:27–32  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25
26static double startupTime = 0;
27void android_StartupTime()
28{
29 struct timeval tv;
30 gettimeofday(&tv, NULL);
31 startupTime = ((tv.tv_sec) * 1000.0 + (tv.tv_usec) / 1000.0);
32}
33
34#include <unistd.h>
35//--------------------------------------

Callers 1

android_mainFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected