3c5e0c8cf8
Copy from home:vuntz:branches:GNOME:Factory/gjs via accept of submit request 43792 revision 2. Request was accepted with message: ok OBS-URL: https://build.opensuse.org/request/show/43792 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/gjs?expand=0&rev=16
19 lines
667 B
Plaintext
19 lines
667 B
Plaintext
|
|
probe gjs.object_proxy_new = process("@EXPANDED_LIBDIR@/libgjs-gi.so.0.0.0").mark("object__proxy__new")
|
|
{
|
|
proxy_address = $arg1;
|
|
gobject_address = $arg2;
|
|
gi_namespace = user_string($arg3);
|
|
gi_name = user_string($arg4);
|
|
probestr = sprintf("gjs.object_proxy_new(%p, %s, %s)", proxy_address, gi_namespace, gi_name);
|
|
}
|
|
|
|
probe gjs.object_proxy_finalize = process("@EXPANDED_LIBDIR@/libgjs-gi.so.0.0.0").mark("object__proxy__finalize")
|
|
{
|
|
proxy_address = $arg1;
|
|
gobject_address = $arg2;
|
|
gi_namespace = user_string($arg3);
|
|
gi_name = user_string($arg4);
|
|
probestr = sprintf("gjs.object_proxy_finalize(%p, %s, %s)", proxy_address, gi_namespace, gi_name);
|
|
}
|