public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/glib/files/
Date: Sun,  6 Nov 2016 19:33:20 +0000 (UTC)	[thread overview]
Message-ID: <1478460737.b3acba4b258ed7ec24c96b4f07d5527e4a359111.soap@gentoo> (raw)

commit:     b3acba4b258ed7ec24c96b4f07d5527e4a359111
Author:     Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sat Sep  3 15:50:38 2016 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Nov  6 19:32:17 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3acba4b

dev-libs/glib: remove unused file

Closes: https://github.com/gentoo/gentoo/pull/2226

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-libs/glib/files/glib-2.48.0-gobject.stp.in | 199 -------------------------
 1 file changed, 199 deletions(-)

diff --git a/dev-libs/glib/files/glib-2.48.0-gobject.stp.in b/dev-libs/glib/files/glib-2.48.0-gobject.stp.in
deleted file mode 100644
index edcdb50..00000000
--- a/dev-libs/glib/files/glib-2.48.0-gobject.stp.in
+++ /dev/null
@@ -1,199 +0,0 @@
-global gtypes
-global gtypenames
-global gsignalnames
-
-/* These are needed to keep track of gtype and signal names for the below
- * probes.
- */
-probe process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("type__new")
-{
-  gtypes[pid(),user_string($arg1)] = $arg3;
-  gtypenames[pid(),$arg3] = user_string($arg1);
-}
-probe process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__new")
-{
-  gsignalnames[pid(),$arg1] = user_string($arg2);
-}
-
-/**
- * probe gobject.type_new - Called when any entity registered with the #GType system is created
- * @name: String name of type
- * @parent_gtype: The parent #GType of this type
- * @gtype: The #GType for this type
- */
-probe gobject.type_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("type__new")
-{
-  name = user_string($arg1); 
-  parent_gtype = $arg2; 
-  gtype = $arg3; 
-  probestr = sprintf("gobject.type_new(%s, %d) -> %d", name, parent_gtype, gtype);
-}
-
-/**
- * probe gobject.object_new - Called when a #GObject is created
- * @object: Raw pointer to object
- * @gtype: #GType for this object
- * @type: String name of object type
- */
-probe gobject.object_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__new")
-{
-  object = $arg1; 
-  gtype = $arg2; 
-  type = gtypenames[pid(),$arg2]; 
-  probestr = sprintf("gobject.object_new(%s) -> %p", type, object);
-}
-
-/**
- * probe gobject.object_ref - Called when a new reference is added to a #GObject
- * @object: Raw pointer to object
- * @gtype: #GType for this object
- * @type: String name of object type
- * @old_refcount: Original value of the reference count
- * @refcount: New value of the reference count
- */
-probe gobject.object_ref = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__ref")
-{
-  object = $arg1; 
-  gtype = $arg2; 
-  type = gtypenames[pid(),gtype]; 
-  old_refcount = $arg3; 
-  refcount = old_refcount+1; 
-  probestr = sprintf("gobject.object_ref(%p[%s]) -> %d", object, type, refcount);
-}
-
-/**
- * probe gobject.object_unref - Called when a reference is removed from a #GObject
- * @object: Raw pointer to object
- * @gtype: #GType for this object
- * @type: String name of object type
- * @old_refcount: Original value of the reference count
- */
-probe gobject.object_unref = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__unref")
-{
-  object = $arg1; 
-  gtype = $arg2; 
-  type = gtypenames[pid(),gtype]; 
-  old_refcount = $arg3; 
-  refcount = old_refcount-1; 
-  probestr = sprintf("gobject.object_unref(%p [%s]) -> %d", object, type, refcount);
-}
-
-/**
- * probe gobject.object_dispose - Called when a g_object_dispose() run for a #GObject is initiated
- * @object: Raw pointer to object
- * @gtype: #GType for this object
- * @type: String name of object type
- * @last_unref: FIXME
- */
-probe gobject.object_dispose = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__dispose")
-{
-  object = $arg1; 
-  gtype = $arg2; 
-  type = gtypenames[pid(),$arg2]; 
-  last_unref = $arg3; 
-  probestr = sprintf("gobject.object_dispose(%p[%s])", object, type);
-}
-
-/**
- * probe gobject.object_dispose_end - Called when a g_object_dispose() run for a #GObject is completed
- * @object: Raw pointer to object
- * @gtype: #GType for this object
- * @type: String name of object type
- * @last_unref: FIXME
- */
-probe gobject.object_dispose_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__dispose__end")
-{
-  object = $arg1; 
-  gtype = $arg2; 
-  type = gtypenames[pid(),$arg2]; 
-  last_unref = $arg3; 
-  probestr = sprintf("gobject.object_dispose_end(%p[%s])", object, type);
-}
-
-/**
- * probe gobject.object_finalize - Called when finalization for a #GObject is started
- * @object: Raw pointer to object
- * @gtype: #GType for this object
- * @type: String name of object type
- */
-probe gobject.object_finalize = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__finalize")
-{
-  object = $arg1; 
-  gtype = $arg2; 
-  type = gtypenames[pid(),$arg2]; 
-  probestr = sprintf("gobject.object_finalize(%p[%s])", object, type);
-}
-
-/**
- * probe gobject.object_finalize - Called when finalization for a #GObject is completed
- * @object: Raw pointer to object
- * @gtype: #GType for this object
- * @type: String name of object type
- */
-probe gobject.object_finalize_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("object__finalize__end")
-{
-  object = $arg1; 
-  gtype = $arg2; 
-  type = gtypenames[pid(),$arg2]; 
-  probestr = sprintf("gobject.object_finalize_end(%p[%s])", object, type);
-}
-
-/**
- * probe gobject.signal_new - Called when a new signal is registered for a #GObject
- * @gsignal: Integer value for this signal
- * @name: String name for this signal
- * @gtype: #GType for the type which will gain the new signal
- * @type: String name of the type which will gain the new signal
- */
-probe gobject.signal_new = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__new")
-{
-  gsignal = $arg1; 
-  name = user_string($arg2); 
-  gtype = $arg3; 
-  type = gtypenames[pid(),$arg3]; 
-  probestr = sprintf("gobject.signal_new(%s, %s) -> %d", name, type, gsignal);
-}
-
-/**
- * probe gobject.signal_emit - Called when a signal emission for a #GObject is started
- * @gsignal: Integer value for this signal
- * @detail: String containing signal "detail"
- * @signal: String name of the signal
- * @object: Raw pointer for object emitting signal
- * @gtype: #GType for the type emitting the signal
- * @type: String name of the type emitting the signal
- */
-probe gobject.signal_emit = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__emit")
-{
-  gsignal = $arg1; 
-  detail = $arg2; 
-  signal = gsignalnames[pid(),$arg1]; 
-  if (detail != 0)
-    signal = signal . "::" . gquarks[pid(), detail]
-  object = $arg3; 
-  gtype = $arg4; 
-  type = gtypenames[pid(),$arg4]; 
-  probestr = sprintf("gobject.signal_emit(%p[%s], %s)", object, type, signal);
-}
-
-/**
- * probe gobject.signal_emit_end - Called when a signal emission for a #GObject is completed
- * @gsignal: Integer value for this signal
- * @detail: String containing signal "detail"
- * @signal: String name of the signal
- * @object: Raw pointer for object emitting signal
- * @gtype: #GType for the type emitting the signal
- * @type: String name of the type emitting the signal
- */
-probe gobject.signal_emit_end = process("@ABS_GLIB_RUNTIME_LIBDIR@/libgobject-2.0.so.0.@LT_CURRENT@.@LT_REVISION@").mark("signal__emit__end")
-{
-  gsignal = $arg1; 
-  detail = $arg2; 
-  signal = gsignalnames[pid(),$arg1]; 
-  if (detail != 0)
-    signal = signal . "::" . gquarks[pid(), detail]
-  object = $arg3; 
-  gtype = $arg4; 
-  type = gtypenames[pid(),$arg4]; 
-  probestr = sprintf("gobject.signal_emit_end(%p[%s], %s)", object, type, signal);
-}


             reply	other threads:[~2016-11-06 19:33 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-06 19:33 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-01-13  8:33 [gentoo-commits] repo/gentoo:master commit in: dev-libs/glib/files/ Dennis Lamm
2018-01-13  8:37 Dennis Lamm
2018-01-13 23:12 Mart Raudsepp
2018-06-10  8:25 Mart Raudsepp

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1478460737.b3acba4b258ed7ec24c96b4f07d5527e4a359111.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox