os.h
来自「用于以太网开发」· C头文件 代码 · 共 24 行
H
24 行
/******************************************************************************
*
* (c) Freescale Inc. 2004 All rights reserved
*
* File Name : os.h
* Description : This file contains OS dependant ENTER and EXIT CRITICAL
*
* Version : 1.0
* Date : Apr/04/04
*
*
******************************************************************************/
#ifndef __OS_H_
#define __OS_H_
extern void os_enter_critical_section (void);
extern void os_exit_critical_section (void);
#define OS_ENTER_CRITICAL() os_enter_critical_section()
#define OS_EXIT_CRITICAL() os_exit_critical_section()
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?