diff options
author | Anthony Liguori <aliguori@us.ibm.com> | 2012-03-12 20:49:13 -0500 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2012-03-12 20:49:13 -0500 |
commit | cbedde09698d3506da429ae305dcea7f7deee554 (patch) | |
tree | df6a1e3c3c8d72ed7ba8f19f4bc97c76fa0b21d4 /trace/simple.c | |
parent | 1d2cb1a2d81af4a760aac18521e11e268ad3711b (diff) | |
parent | 727500181a2b2470a676e021205d170ede23beb7 (diff) |
Merge remote-tracking branch 'stefanha/tracing' into staging
* stefanha/tracing:
vga: add trace event for ppm_save
console: add some trace events
maintainers: Add docs/tracing.txt to Tracing
docs: correct ./configure line in tracing.txt
trace: make trace_thread_create() use its function arg
tracetool: Omit useless QEMU_*_ENABLED() check
trace: Provide a per-event status define for conditional compilation
Diffstat (limited to 'trace/simple.c')
-rw-r--r-- | trace/simple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/trace/simple.c b/trace/simple.c index bbc99302b9..33ae48696d 100644 --- a/trace/simple.c +++ b/trace/simple.c @@ -363,7 +363,7 @@ static GThread *trace_thread_create(GThreadFunc fn) sigfillset(&set); pthread_sigmask(SIG_SETMASK, &set, &oldset); #endif - thread = g_thread_create(writeout_thread, NULL, FALSE, NULL); + thread = g_thread_create(fn, NULL, FALSE, NULL); #ifndef _WIN32 pthread_sigmask(SIG_SETMASK, &oldset, NULL); #endif |