✏️ 正在编辑: reset.h
路径:
/usr/src/linux-aws-headers-4.15.0-1057/arch/s390/include/asm/reset.h
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
/* SPDX-License-Identifier: GPL-2.0 */ /* * Copyright IBM Corp. 2006 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com> */ #ifndef _ASM_S390_RESET_H #define _ASM_S390_RESET_H #include <linux/list.h> struct reset_call { struct list_head list; void (*fn)(void); }; extern void register_reset_call(struct reset_call *reset); extern void unregister_reset_call(struct reset_call *reset); extern void s390_reset_system(void); #endif /* _ASM_S390_RESET_H */
💾 保存文件
← 返回文件管理器