int einit_feedback_visual_fbsplash_cleanup (struct lmodule *tm) {
 event_ignore (einit_event_subsystem_boot, einit_feedback_visual_fbsplash_boot_event_handler);
 event_ignore (einit_event_subsystem_power, einit_feedback_visual_fbsplash_power_event_handler);
 event_ignore (einit_event_subsystem_core, einit_feedback_visual_fbsplash_einit_event_handler);

 return 0;
}
Ejemplo n.º 2
0
int linux_static_dev_cleanup (struct lmodule *pa) {
    exec_cleanup(pa);

    event_ignore (einit_event_subsystem_power, linux_static_dev_power_event_handler);
    event_ignore (einit_event_subsystem_boot, linux_static_dev_boot_event_handler);

    return 0;
}
Ejemplo n.º 3
0
int linux_hotplug_cleanup (struct lmodule *tm) {
 exec_cleanup (tm);

 event_ignore (einit_event_subsystem_hotplug, linux_hotplug_hotplug_event_handler);

 return 1;
}
Ejemplo n.º 4
0
int linux_bootchart_cleanup (struct lmodule *pa) {
    event_ignore (einit_event_subsystem_core, linux_bootchart_core_event_handler);
    event_ignore (einit_event_subsystem_boot, linux_bootchart_boot_event_handler);

    return 0;
}