os/ossrv/ofdbus/dbus/bus/utils.c
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ofdbus/dbus/bus/utils.c	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,54 @@
     1.4 +/* -*- mode: C; c-file-style: "gnu" -*- */
     1.5 +/* utils.c  General utility functions
     1.6 + *
     1.7 + * Copyright (C) 2003  CodeFactory AB
     1.8 + * Copyright (C) 2003  Red Hat, Inc.
     1.9 + * Portion Copyright © 2008 Nokia Corporation and/or its subsidiary(-ies). All rights reserved.
    1.10 + * Licensed under the Academic Free License version 2.1
    1.11 + * 
    1.12 + * This program is free software; you can redistribute it and/or modify
    1.13 + * it under the terms of the GNU General Public License as published by
    1.14 + * the Free Software Foundation; either version 2 of the License, or
    1.15 + * (at your option) any later version.
    1.16 + *
    1.17 + * This program is distributed in the hope that it will be useful,
    1.18 + * but WITHOUT ANY WARRANTY; without even the implied warranty of
    1.19 + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    1.20 + * GNU General Public License for more details.
    1.21 + * 
    1.22 + * You should have received a copy of the GNU General Public License
    1.23 + * along with this program; if not, write to the Free Software
    1.24 + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
    1.25 + *
    1.26 + */
    1.27 +
    1.28 +#include "utils.h"
    1.29 +#ifndef __SYMBIAN32__
    1.30 +#include <config.h>
    1.31 +#include <dbus/dbus-sysdeps.h>
    1.32 +#include <dbus/dbus-mainloop.h>
    1.33 +#else
    1.34 +#include "config.h"
    1.35 +#include "dbus/dbus-sysdeps.h"
    1.36 +#include "dbus/dbus-mainloop.h"
    1.37 +#endif //__SYMBIAN32__
    1.38 +
    1.39 +const char bus_no_memory_message[] = "Memory allocation failure in message bus";
    1.40 +
    1.41 +void
    1.42 +bus_connection_dispatch_all_messages (DBusConnection *connection)
    1.43 +{
    1.44 +  while (bus_connection_dispatch_one_message (connection))
    1.45 +    ;
    1.46 +}
    1.47 +
    1.48 +dbus_bool_t
    1.49 +bus_connection_dispatch_one_message  (DBusConnection *connection)
    1.50 +{
    1.51 +  DBusDispatchStatus status;
    1.52 +
    1.53 +  while ((status = dbus_connection_dispatch (connection)) == DBUS_DISPATCH_NEED_MEMORY)
    1.54 +    _dbus_wait_for_memory ();
    1.55 +  
    1.56 +  return status == DBUS_DISPATCH_DATA_REMAINS;
    1.57 +}