From 5124eb5927d4d90adc5640e5d36a589bfadd1828 Mon Sep 17 00:00:00 2001 From: Markus Armbruster Date: Thu, 25 Mar 2010 17:22:39 +0100 Subject: error: New QERR_DEVICE_IN_USE Signed-off-by: Markus Armbruster Signed-off-by: Luiz Capitulino --- qerror.c | 4 ++++ qerror.h | 3 +++ 2 files changed, 7 insertions(+) diff --git a/qerror.c b/qerror.c index 97e8d4ab93..8d885cdce4 100644 --- a/qerror.c +++ b/qerror.c @@ -68,6 +68,10 @@ static const QErrorStringTable qerror_table[] = { .error_fmt = QERR_DEVICE_INIT_FAILED, .desc = "Device '%(device)' could not be initialized", }, + { + .error_fmt = QERR_DEVICE_IN_USE, + .desc = "Device '%(device)' is in use", + }, { .error_fmt = QERR_DEVICE_LOCKED, .desc = "Device '%(device)' is locked", diff --git a/qerror.h b/qerror.h index 5625d54e69..bae08c0bb0 100644 --- a/qerror.h +++ b/qerror.h @@ -67,6 +67,9 @@ QError *qobject_to_qerror(const QObject *obj); #define QERR_DEVICE_INIT_FAILED \ "{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }" +#define QERR_DEVICE_IN_USE \ + "{ 'class': 'DeviceInUse', 'data': { 'device': %s } }" + #define QERR_DEVICE_LOCKED \ "{ 'class': 'DeviceLocked', 'data': { 'device': %s } }" -- cgit v1.2.1