mirror of
https://github.com/systemd/systemd.git
synced 2025-03-30 10:50:15 +03:00
libudev: ctrl - return error after sending ctrl message
This commit is contained in:
parent
b2fbf53a08
commit
89d080c3ae
@ -15,9 +15,9 @@ AC_PREFIX_DEFAULT([/usr])
|
||||
test "$prefix" = NONE && test "$exec_prefix" = NONE && exec_prefix=
|
||||
|
||||
dnl /* libudev version */
|
||||
LIBUDEV_LT_CURRENT=0
|
||||
LIBUDEV_LT_REVISION=10
|
||||
LIBUDEV_LT_AGE=0
|
||||
LIBUDEV_LT_CURRENT=1
|
||||
LIBUDEV_LT_REVISION=0
|
||||
LIBUDEV_LT_AGE=1
|
||||
AC_SUBST(LIBUDEV_LT_CURRENT)
|
||||
AC_SUBST(LIBUDEV_LT_REVISION)
|
||||
AC_SUBST(LIBUDEV_LT_AGE)
|
||||
|
@ -168,38 +168,32 @@ static int ctrl_send(struct udev_ctrl *uctrl, enum udev_ctrl_msg_type type, int
|
||||
|
||||
int udev_ctrl_send_set_log_level(struct udev_ctrl *uctrl, int priority)
|
||||
{
|
||||
ctrl_send(uctrl, UDEV_CTRL_SET_LOG_LEVEL, priority, NULL);
|
||||
return 0;
|
||||
return ctrl_send(uctrl, UDEV_CTRL_SET_LOG_LEVEL, priority, NULL);
|
||||
}
|
||||
|
||||
int udev_ctrl_send_stop_exec_queue(struct udev_ctrl *uctrl)
|
||||
{
|
||||
ctrl_send(uctrl, UDEV_CTRL_STOP_EXEC_QUEUE, 0, NULL);
|
||||
return 0;
|
||||
return ctrl_send(uctrl, UDEV_CTRL_STOP_EXEC_QUEUE, 0, NULL);
|
||||
}
|
||||
|
||||
int udev_ctrl_send_start_exec_queue(struct udev_ctrl *uctrl)
|
||||
{
|
||||
ctrl_send(uctrl, UDEV_CTRL_START_EXEC_QUEUE, 0, NULL);
|
||||
return 0;
|
||||
return ctrl_send(uctrl, UDEV_CTRL_START_EXEC_QUEUE, 0, NULL);
|
||||
}
|
||||
|
||||
int udev_ctrl_send_reload_rules(struct udev_ctrl *uctrl)
|
||||
{
|
||||
ctrl_send(uctrl, UDEV_CTRL_RELOAD_RULES, 0, NULL);
|
||||
return 0;
|
||||
return ctrl_send(uctrl, UDEV_CTRL_RELOAD_RULES, 0, NULL);
|
||||
}
|
||||
|
||||
int udev_ctrl_send_set_env(struct udev_ctrl *uctrl, const char *key)
|
||||
{
|
||||
ctrl_send(uctrl, UDEV_CTRL_SET_ENV, 0, key);
|
||||
return 0;
|
||||
return ctrl_send(uctrl, UDEV_CTRL_SET_ENV, 0, key);
|
||||
}
|
||||
|
||||
int udev_ctrl_send_set_max_childs(struct udev_ctrl *uctrl, int count)
|
||||
{
|
||||
ctrl_send(uctrl, UDEV_CTRL_SET_MAX_CHILDS, count, NULL);
|
||||
return 0;
|
||||
return ctrl_send(uctrl, UDEV_CTRL_SET_MAX_CHILDS, count, NULL);
|
||||
}
|
||||
|
||||
struct udev_ctrl_msg *udev_ctrl_receive_msg(struct udev_ctrl *uctrl)
|
||||
|
Loading…
x
Reference in New Issue
Block a user