コード例 #1
0
ファイル: setup.c プロジェクト: GodFox/magx_kernel_xpixl
static void ATTRIB_NORET cfe_linux_halt(void)
{
	static const int one = 1;

	cfe_linux_exit((void *)&one);
}
コード例 #2
0
ファイル: setup.c プロジェクト: hugh-smtl/linux-2.6
static void __noreturn cfe_linux_halt(void)
{
	static const int one = 1;

	cfe_linux_exit((void *)&one);
}
コード例 #3
0
ファイル: setup.c プロジェクト: GodFox/magx_kernel_xpixl
static void ATTRIB_NORET cfe_linux_restart(char *command)
{
	static const int zero;

	cfe_linux_exit((void *)&zero);
}
コード例 #4
0
ファイル: setup.c プロジェクト: hugh-smtl/linux-2.6
static void __noreturn cfe_linux_restart(char *command)
{
	static const int zero;

	cfe_linux_exit((void *)&zero);
}