Home
last modified time | relevance | path

Searched refs:SYSINIT (Results 1 – 3 of 3) sorted by relevance

/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/
Dmodule.h80 SYSINIT(fn, SI_SUB_OFED_MODINIT, SI_ORDER_FIRST, _module_run, (fn))
90 SYSINIT(fn, SI_SUB_OFED_MODINIT, (order), _module_run, (fn))
104 #define postcore_initcall(fn) SYSINIT(fn, SI_SUB_POST_CORE_INIT, SI_ORDER_FIRST, _module_run, (fn…
105 #define arch_initcall(fn) SYSINIT(fn, SI_SUB_ARCH_INIT, SI_ORDER_FIRST, _module_run, (fn))
106 #define subsys_initcall(fn) SYSINIT(fn, SI_SUB_SUBSYS_INIT, SI_ORDER_FIRST, _module_run, (fn))
/third_party/toybox/toys/pending/
Dinit.c35 #define SYSINIT 0x01 macro
134 add_new_action(SYSINIT, "/etc/init.d/rcS", ""); in inittab_parsing()
306 if (x->action & (SHUTDOWN|ONCE|SYSINIT|CTRLALTDEL|WAIT)) { in run_action_from_list()
309 if (x->action & (SHUTDOWN|SYSINIT|CTRLALTDEL|WAIT)) waitforpid(pid); in run_action_from_list()
476 run_action_from_list(SYSINIT); in init_main()
/third_party/FreeBSD/sys/sys/
Dkernel.h147 #define SYSINIT(uniquifier, subsystem, order, func, ident) \ macro