X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=udev%2Fudev.h;h=6833e60d616e4037f54b5037725f3ecee805143f;hb=13f90be7a33353fdbcd4a389630a05c608bdf2a4;hp=b1b65c5617daa84efd1802c6e4b24da2a2397a28;hpb=c7cdd8b2d28ff56211ac9ce54805f5568ffa7346;p=elogind.git diff --git a/udev/udev.h b/udev/udev.h index b1b65c561..6833e60d6 100644 --- a/udev/udev.h +++ b/udev/udev.h @@ -43,13 +43,15 @@ struct udev_event { uid_t uid; gid_t gid; struct udev_list_node run_list; - unsigned int group_final:1; - unsigned int owner_final:1; - unsigned int mode_final:1; - unsigned int name_final:1; - unsigned int devlink_final:1; - unsigned int run_final:1; - unsigned int inotify_watch:1; + int exec_delay; + bool inotify_watch; + bool inotify_watch_final; + bool group_final; + bool owner_final; + bool mode_final; + bool name_final; + bool devlink_final; + bool run_final; }; struct udev_watch { @@ -63,6 +65,7 @@ struct udev_rules; struct udev_rules *udev_rules_new(struct udev *udev, int resolve_names); void udev_rules_unref(struct udev_rules *rules); int udev_rules_apply_to_event(struct udev_rules *rules, struct udev_event *event); +void udev_rules_apply_static_dev_perms(struct udev_rules *rules); /* udev-event.c */ struct udev_event *udev_event_new(struct udev_device *dev);