system.h
来自「讲述linux的初始化过程」· C头文件 代码 · 共 37 行
H
37 行
/* * linux/include/asm-arm/arch-sa1100/system.h * * Copyright (c) 1999 Nicolas Pitre <nico@cam.org> */#include <linux/config.h>static inline void arch_idle(void){ while (!current->need_resched && !hlt_counter) cpu_do_idle(0);}#ifdef CONFIG_SA1100_VICTOR/* power off unconditionally */#define arch_reset(x) machine_power_off()#elseextern inline void arch_reset(char mode){ if (mode == 's') { /* Jump into ROM at address 0 */ cpu_reset(0); } else { /* Activate SA1100 watchdog and wait for the trigger... */ OSMR3 = OSCR + 3686400/2; /* in 1/2 sec */ OWER |= OWER_WME; OIER |= OIER_E3; }}#define arch_power_off() do { } while (0)#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?