mirror of
https://github.com/systemd/systemd.git
synced 2025-03-23 10:50:16 +03:00
use MIN() MAX() from param.h
This commit is contained in:
parent
e4c02c1ca6
commit
257bb4cdac
@ -16,7 +16,6 @@
|
||||
#include "libudev.h"
|
||||
|
||||
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
||||
#define UDEV_MAX(a,b) ((a) > (b) ? (a) : (b))
|
||||
#define READ_END 0
|
||||
#define WRITE_END 1
|
||||
|
||||
|
@ -20,6 +20,7 @@
|
||||
#include <pwd.h>
|
||||
#include <grp.h>
|
||||
#include <sys/wait.h>
|
||||
#include <sys/param.h>
|
||||
|
||||
#include "libudev.h"
|
||||
#include "libudev-private.h"
|
||||
@ -356,7 +357,7 @@ int util_run_program(struct udev *udev, const char *command, char **envp,
|
||||
FD_SET(outpipe[READ_END], &readfds);
|
||||
if (errpipe[READ_END] > 0)
|
||||
FD_SET(errpipe[READ_END], &readfds);
|
||||
fdcount = select(UDEV_MAX(outpipe[READ_END], errpipe[READ_END])+1, &readfds, NULL, NULL, NULL);
|
||||
fdcount = select(MAX(outpipe[READ_END], errpipe[READ_END])+1, &readfds, NULL, NULL, NULL);
|
||||
if (fdcount < 0) {
|
||||
if (errno == EINTR)
|
||||
continue;
|
||||
|
@ -204,7 +204,7 @@ int udevadm_monitor(struct udev *udev, int argc, char *argv[])
|
||||
if (udev_monitor != NULL)
|
||||
FD_SET(udev_monitor_get_fd(udev_monitor), &readfds);
|
||||
|
||||
fdcount = select(UDEV_MAX(udev_monitor_get_fd(kernel_monitor), udev_monitor_get_fd(udev_monitor))+1,
|
||||
fdcount = select(MAX(udev_monitor_get_fd(kernel_monitor), udev_monitor_get_fd(udev_monitor))+1,
|
||||
&readfds, NULL, NULL, NULL);
|
||||
if (fdcount < 0) {
|
||||
if (errno != EINTR)
|
||||
|
Loading…
x
Reference in New Issue
Block a user