X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dbus%2Fdbus-resources.h;h=781a5756c802bc61ad9bbae1dba4ea92db209e63;hb=3ccb027c907f9ee2890028e83b60296204bbf478;hp=77f31f3eb5e4d9effc1386915bee906f8e4d9d33;hpb=a1df3040f29223eddaa3ace0fe018fcb28cddcd9;p=platform%2Fupstream%2Fdbus.git diff --git a/dbus/dbus-resources.h b/dbus/dbus-resources.h index 77f31f3..781a575 100644 --- a/dbus/dbus-resources.h +++ b/dbus/dbus-resources.h @@ -1,9 +1,9 @@ -/* -*- mode: C; c-file-style: "gnu" -*- */ +/* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */ /* dbus-resources.h Resource tracking/limits * * Copyright (C) 2003 Red Hat Inc. * - * Licensed under the Academic Free License version 2.0 + * Licensed under the Academic Free License version 2.1 * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -17,7 +17,7 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * */ #ifndef DBUS_RESOURCES_H @@ -27,7 +27,7 @@ #include #include -DBUS_BEGIN_DECLS; +DBUS_BEGIN_DECLS typedef struct DBusCounter DBusCounter; @@ -37,16 +37,25 @@ typedef void (* DBusCounterNotifyFunction) (DBusCounter *counter, DBusCounter* _dbus_counter_new (void); DBusCounter* _dbus_counter_ref (DBusCounter *counter); void _dbus_counter_unref (DBusCounter *counter); -void _dbus_counter_adjust (DBusCounter *counter, - long delta); -long _dbus_counter_get_value (DBusCounter *counter); -void _dbus_counter_set_notify (DBusCounter *counter, - long guard_value, - DBusCounterNotifyFunction function, - void *user_data); - - -DBUS_END_DECLS; +void _dbus_counter_adjust_size (DBusCounter *counter, + long delta); +void _dbus_counter_adjust_unix_fd (DBusCounter *counter, + long delta); +void _dbus_counter_notify (DBusCounter *counter); +long _dbus_counter_get_size_value (DBusCounter *counter); +long _dbus_counter_get_unix_fd_value (DBusCounter *counter); + +void _dbus_counter_set_notify (DBusCounter *counter, + long size_guard_value, + long unix_fd_guard_value, + DBusCounterNotifyFunction function, + void *user_data); + +/* if DBUS_ENABLE_STATS */ +long _dbus_counter_get_peak_size_value (DBusCounter *counter); +long _dbus_counter_get_peak_unix_fd_value (DBusCounter *counter); + +DBUS_END_DECLS #endif /* DBUS_RESOURCES_H */