mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-12-26 15:36:14 +01:00
Merge branch 'thread-trace' into 'master'
gthread: Add a sysprof mark for thread creation See merge request GNOME/glib!1627
This commit is contained in:
commit
a1a8016553
@ -58,6 +58,7 @@
|
||||
#include "gstrfuncs.h"
|
||||
#include "gtestutils.h"
|
||||
#include "glib_trace.h"
|
||||
#include "gtrace-private.h"
|
||||
|
||||
/**
|
||||
* SECTION:threads
|
||||
@ -920,6 +921,7 @@ g_thread_new_internal (const gchar *name,
|
||||
|
||||
g_atomic_int_inc (&g_thread_n_created_counter);
|
||||
|
||||
g_trace_mark (G_TRACE_CURRENT_TIME, 0, "GLib", "GThread created", "%s", name ? name : "(unnamed)");
|
||||
return (GThread *) g_system_thread_new (proxy, stack_size, scheduler_settings,
|
||||
name, func, data, error);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user