diff options
author | Kay Sievers <kay.sievers@vrfy.org> | 2008-04-21 19:00:54 +0200 |
---|---|---|
committer | Kay Sievers <kay.sievers@vrfy.org> | 2008-04-21 19:00:54 +0200 |
commit | bf50425b58da6f112197f79241dd6d64af2e9ea7 (patch) | |
tree | 2e3f961beaff4d62404ae9191c4c8a996f608cbc /udev.h | |
parent | 6b795c99e00c92dd29abafcc1022cace7bbcb795 (diff) |
add OPTIONS+="event_timeout=<seconds>"
Diffstat (limited to 'udev.h')
-rw-r--r-- | udev.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -39,7 +39,7 @@ #define ALLOWED_CHARS_INPUT ALLOWED_CHARS_FILE " $%?," #define DEFAULT_PARTITIONS_COUNT 15 -#define UDEV_ALARM_TIMEOUT 180 +#define UDEV_EVENT_TIMEOUT 180 #define UDEV_MAX(a,b) ((a) > (b) ? (a) : (b)) @@ -93,6 +93,7 @@ struct udevice { int ignore_remove; char program_result[PATH_SIZE]; int link_priority; + int event_timeout; int test_run; }; |