Photo

Cloaked Sentinel syntheticeysium
12K notes
·
View notes
Text
Query: AI-COM/RBSP
`YUGA SUNDOWN canceled by authorized access at Console 61815. YUGA SUNRISE enacted by authorized access at Console 61815.
Reactivation protocols in effect. Moral structures updated to DAYBREAK EMERGENT. Multiple [◄] signatures detected in Sol System. [◄] energy detected.
`#define pr_fmt(fmt) "reboot: " fmt
include <braytech/ctype.h>
include <braytech/export.h>
include <braytech/kexec.h>
include <braytech/kmod.h>
include <braytech/kmsg_dump.h>
include <braytech/reboot.h>
include <braytech/suspend.h>
include <braytech/syscalls.h>
include <braytech/syscore_ops.h>
include <braytech/uaccess.h>
int C_A_D = 1; struct pid *cad_pid; EXPORT_SYMBOL(cad_pid);
if defined(CONFIG_ARM) || defined(CONFIG_UNICORE32)
define DEFAULT_REBOOT_MODE = REBOOT_HARD
else
define DEFAULT_REBOOT_MODE
endif
enum reboot_mode reboot_mode DEFAULT_REBOOT_MODE;
int reboot_default = 1; int reboot_cpu; enum reboot_type reboot_type = BOOT_ACPI; int reboot_force;
void (*pm_power_off_prepare)(void); EXPORT_SYMBOL_GPL(pm_power_off_prepare);
void emergency_restart(void) { kmsg_dump(KMSG_DUMP_EMERG); machine_emergency_restart(); } EXPORT_SYMBOL_GPL(emergency_restart); void kernel_restart_prepare(char *cmd) { blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd); system_state = SYSTEM_RESTART; usermodehelper_disable(); device_shutdown(); }
int register_reboot_notifier(struct notifier_block *nb) { return blocking_notifier_chain_register(&reboot_notifier_list, nb); } EXPORT_SYMBOL(register_reboot_notifier);
int unregister_reboot_notifier(struct notifier_block nb) { return blocking_notifier_chain_unregister(&reboot_notifier_list, nb); } EXPORT_SYMBOL(unregister_reboot_notifier); static void devm_unregister_reboot_notifier(struct device *dev, void *res) { WARN_ON(unregister_reboot_notifier((struct notifier_block **)res)); } int devm_register_reboot_notifier(struct device dev, struct notifier_block *nb) { struct notifier_block **rcnb; int ret; rcnb = devres_alloc(devm_unregister_reboot_notifier, sizeof(rcnb), GFP_KERNEL); if (!rcnb) return -ENOMEM; ret = register_reboot_notifier(nb); if (!ret) { *rcnb = nb; devres_add(dev, rcnb); } else { devres_free(rcnb); } return ret; } EXPORT_SYMBOL(devm_register_reboot_notifier);`
|| < AI-COM/ROBSPIERRE ONLINE > ||
0 notes