summaryrefslogtreecommitdiff
path: root/udev/udevd.c
diff options
context:
space:
mode:
authorKay Sievers <kay.sievers@vrfy.org>2011-12-28 19:03:43 +0100
committerKay Sievers <kay.sievers@vrfy.org>2011-12-28 19:03:43 +0100
commit57c6f8ae5f52a6e8ffc66a54966346f733dded39 (patch)
tree639470a08850c5a174a8693772e2af38d27a3c54 /udev/udevd.c
parent43d5c5f03645c4b842659f9b5bd0ae465e885e92 (diff)
update README
Diffstat (limited to 'udev/udevd.c')
-rw-r--r--udev/udevd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/udev/udevd.c b/udev/udevd.c
index 1e12eb38ac..63b4fd7ad2 100644
--- a/udev/udevd.c
+++ b/udev/udevd.c
@@ -398,7 +398,7 @@ out:
}
}
-static void event_run(struct event *event, bool force)
+static void event_run(struct event *event)
{
struct udev_list_node *loop;
@@ -423,7 +423,7 @@ static void event_run(struct event *event, bool force)
return;
}
- if (!force && children >= children_max) {
+ if (children >= children_max) {
if (children_max > 1)
info(event->udev, "maximum number (%i) of children reached\n", children);
return;
@@ -573,7 +573,7 @@ static void event_queue_start(struct udev *udev)
continue;
}
- event_run(event, false);
+ event_run(event);
}
}