summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/timer.c
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2010-08-21 22:25:58 +0000
committer Aaron Giles <aaron@aarongiles.com>2010-08-21 22:25:58 +0000
commita2f7346d9099da6582b42bc912a2436d8e9c6f44 (patch)
treea4aec5d15135079bcad4484386e389a7080da494 /src/emu/timer.c
parente8d644d285d743a93b2442d4c2f9b568a38a4715 (diff)
I had originally wanted to convert the profiler to use scopes (e.g.,
create a stack class that started the profiler in the constructor and stopped it in the destructor). Sadly, doing that causes gcc to call out to hook up the unwind chain, and this tanks performance quite badly, even when the profiler is off. Since I had already class-ified profiler.c, I decided to keep the old way of doing things but wrap it in the newer classes. So at least it wasn't a complete waste of my time. Search & replace: profiler_mark_start -> g_profiler.start profiler_mark_end -> g_profiler.end
Diffstat (limited to 'src/emu/timer.c')
-rw-r--r--src/emu/timer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/timer.c b/src/emu/timer.c
index 0faebed1468..c6b35eb7370 100644
--- a/src/emu/timer.c
+++ b/src/emu/timer.c
@@ -371,9 +371,9 @@ void timer_execute_timers(running_machine *machine)
if (was_enabled && timer->callback != NULL)
{
LOG(("Timer %s:%d[%s] fired (expire=%s)\n", timer->file, timer->line, timer->func, attotime_string(timer->expire, 9)));
- profiler_mark_start(PROFILER_TIMER_CALLBACK);
+ g_profiler.start(PROFILER_TIMER_CALLBACK);
(*timer->callback)(machine, timer->ptr, timer->param);
- profiler_mark_end();
+ g_profiler.stop();
}
/* clear the callback timer global */