Searched refs:SYSINIT (Results 1 – 3 of 3) sorted by relevance
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
D | module.h | 80 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/ |
D | init.c | 35 #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/ |
D | kernel.h | 147 #define SYSINIT(uniquifier, subsystem, order, func, ident) \ macro
|