MCPcopy Create free account
hub / github.com/VirtualGL/virtualgl / println

Method println

util/Log.cpp:93–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

91
92
93void Log::println(const char *format, ...)
94{
95 CriticalSection::SafeLock l(mutex);
96 va_list arglist;
97 va_start(arglist, format);
98 vfprintf(logFile, format, arglist);
99 va_end(arglist);
100 fprintf(logFile, "\n");
101}
102
103
104void Log::PRINTLN(const char *format, ...)

Callers 15

xhandlerFunction · 0.80
killprocFunction · 0.80
instanceCheckFunction · 0.80
getEnvironmentFunction · 0.80
mainFunction · 0.80
startFunction · 0.80
runMethod · 0.80
sendMethod · 0.80
recvMethod · 0.80
initGLMethod · 0.80
sendHeaderMethod · 0.80
runMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected