mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-24 13:30:08 +01:00
And these.
This commit is contained in:
parent
35aec362a7
commit
d02b7cd060
2 changed files with 5 additions and 5 deletions
|
|
@ -55,6 +55,11 @@ void dbus_server_set_watch_functions (DBusServer *server,
|
|||
DBusRemoveWatchFunction remove_function,
|
||||
void *data,
|
||||
DBusFreeFunction free_data_function);
|
||||
void dbus_server_set_timeout_functions (DBusServer *server,
|
||||
DBusAddTimeoutFunction add_function,
|
||||
DBusRemoveTimeoutFunction remove_function,
|
||||
void *data,
|
||||
DBusFreeFunction free_data_function);
|
||||
void dbus_server_handle_watch (DBusServer *server,
|
||||
DBusWatch *watch,
|
||||
unsigned int condition);
|
||||
|
|
|
|||
|
|
@ -56,8 +56,6 @@ debug_finalize (DBusTransport *transport)
|
|||
static void
|
||||
do_reading (DBusTransport *transport)
|
||||
{
|
||||
printf ("in do reading!\n");
|
||||
|
||||
if (transport->disconnected)
|
||||
return;
|
||||
|
||||
|
|
@ -208,7 +206,6 @@ debug_messages_pending (DBusTransport *transport,
|
|||
int messages_pending)
|
||||
{
|
||||
check_write_timeout (transport);
|
||||
printf ("messages pending!: %d\n", messages_pending);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
@ -216,8 +213,6 @@ debug_do_iteration (DBusTransport *transport,
|
|||
unsigned int flags,
|
||||
int timeout_milliseconds)
|
||||
{
|
||||
printf ("do iteration: %d %d!!\n", transport->is_server,
|
||||
flags);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue