hotplug.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. /*
  2. * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
  3. * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU Lesser General Public License version 2.1
  7. * as published by the Free Software Foundation
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. */
  14. #ifndef __PROCD_HOTPLUG_H
  15. #define __PROCD_HOTPLUG_H
  16. #include <libubox/uloop.h>
  17. #ifndef DISABLE_INIT
  18. void hotplug(char *rules);
  19. int hotplug_run(char *rules);
  20. void hotplug_shutdown(void);
  21. void hotplug_last_event(uloop_timeout_handler handler);
  22. void procd_coldplug(void);
  23. #else
  24. static inline void hotplug(char *rules)
  25. {
  26. }
  27. static inline int hotplug_run(char *rules)
  28. {
  29. return 0;
  30. }
  31. static inline void hotplug_shutdown(void)
  32. {
  33. }
  34. static inline void hotplug_last_event(uloop_timeout_handler handler)
  35. {
  36. }
  37. static inline void procd_coldplug(void)
  38. {
  39. }
  40. #endif
  41. #endif