error: New QERR_DEVICE_IN_USE
Signed-off-by: Markus Armbruster <armbru@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
5294e2c774
commit
5124eb5927
4
qerror.c
4
qerror.c
@ -68,6 +68,10 @@ static const QErrorStringTable qerror_table[] = {
|
|||||||
.error_fmt = QERR_DEVICE_INIT_FAILED,
|
.error_fmt = QERR_DEVICE_INIT_FAILED,
|
||||||
.desc = "Device '%(device)' could not be initialized",
|
.desc = "Device '%(device)' could not be initialized",
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.error_fmt = QERR_DEVICE_IN_USE,
|
||||||
|
.desc = "Device '%(device)' is in use",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
.error_fmt = QERR_DEVICE_LOCKED,
|
.error_fmt = QERR_DEVICE_LOCKED,
|
||||||
.desc = "Device '%(device)' is locked",
|
.desc = "Device '%(device)' is locked",
|
||||||
|
3
qerror.h
3
qerror.h
@ -67,6 +67,9 @@ QError *qobject_to_qerror(const QObject *obj);
|
|||||||
#define QERR_DEVICE_INIT_FAILED \
|
#define QERR_DEVICE_INIT_FAILED \
|
||||||
"{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }"
|
"{ 'class': 'DeviceInitFailed', 'data': { 'device': %s } }"
|
||||||
|
|
||||||
|
#define QERR_DEVICE_IN_USE \
|
||||||
|
"{ 'class': 'DeviceInUse', 'data': { 'device': %s } }"
|
||||||
|
|
||||||
#define QERR_DEVICE_LOCKED \
|
#define QERR_DEVICE_LOCKED \
|
||||||
"{ 'class': 'DeviceLocked', 'data': { 'device': %s } }"
|
"{ 'class': 'DeviceLocked', 'data': { 'device': %s } }"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user