Add InUse error type

This commit is contained in:
Denis Kenzior 2009-10-22 17:11:58 -05:00 committed by Denis Kenzior
parent 0b68ad7e32
commit 729d580692
2 changed files with 7 additions and 0 deletions

View File

@ -310,6 +310,12 @@ DBusMessage *__ofono_error_sim_not_ready(DBusMessage *msg)
"SIM is not ready or not inserted");
}
DBusMessage *__ofono_error_in_use(DBusMessage *msg)
{
return g_dbus_create_error(msg, DBUS_GSM_ERROR_INTERFACE ".InUse",
"The resource is currently in use");
}
void __ofono_dbus_pending_reply(DBusMessage **msg, DBusMessage *reply)
{
DBusConnection *conn = ofono_dbus_get_connection();

View File

@ -50,6 +50,7 @@ DBusMessage *__ofono_error_not_active(DBusMessage *msg);
DBusMessage *__ofono_error_not_supported(DBusMessage *msg);
DBusMessage *__ofono_error_timed_out(DBusMessage *msg);
DBusMessage *__ofono_error_sim_not_ready(DBusMessage *msg);
DBusMessage *__ofono_error_in_use(DBusMessage *msg);
void __ofono_dbus_pending_reply(DBusMessage **msg, DBusMessage *reply);