rtai_fpu.h
来自「rtai-3.1-test3的源代码(Real-Time Application」· C头文件 代码 · 共 24 行
H
24 行
/* * include/asm-arm/fpu.h * * Just a dummy for RTAI now, because our ARM has no FPU * If you have an ARM-processor with FPU, add the necessary code to up_task_sw ... */#ifndef RTAI_FPU_ASM_H#define RTAI_FPU_ASM_H#ifdef CONFIG_RTAI_FPU_SUPPORTextern void save_fpenv(long *fpu_reg);extern void restore_fpenv(long *fpu_reg);#else /* notdef CONFIG_RTAI_FPU_SUPPORT */#define save_fpenv(x)#define restore_fpenv(x)#endif /* CONFIG_RTAI_FPU_SUPPORT */#endif /* RTAI_FPU_ASM_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?