There was an error while loading. Please reload this page.
1 parent 8f11390 commit ad0ec0cCopy full SHA for ad0ec0c
1 file changed
src/main/ipc/NativeExecutor.cpp
@@ -133,14 +133,18 @@ namespace lsp
133
atomic_unlock(nLock);
134
135
// Execute task
136
+ #ifdef LSP_TRACE
137
lsp_trace("executing task %p", task);
138
const system::time_millis_t start = system::get_time_millis();
139
+ #endif /* LSP_TRACE */
140
141
run_task(task);
142
143
144
const system::time_millis_t end = system::get_time_millis();
145
lsp_trace("executed task %p with code %d, time=%d ms",
146
task, int(task->code()), int(end - start));
147
148
}
149
150
0 commit comments