示例#1
0
void
_dbus_server_trace_ref (DBusServer *server,
                        int old_refcount,
                        int new_refcount,
                        const char *why)
{
    static int enabled = -1;

    _dbus_trace_ref ("DBusServer", server, old_refcount, new_refcount, why,
                     "DBUS_SERVER_TRACE", &enabled);
}
示例#2
0
static void
_dbus_pending_call_trace_ref (DBusPendingCall *pending_call,
    int old_refcount,
    int new_refcount,
    const char *why)
{
  static int enabled = -1;

  _dbus_trace_ref ("DBusPendingCall", pending_call, old_refcount,
      new_refcount, why, "DBUS_PENDING_CALL_TRACE", &enabled);
}