xilentz 的网络文摘博客园 首页 新随笔 联系 订阅 管理 随笔 - 204 文章 - 0 评论 - 10 trackbacks - 0 uCOS_II.C/* uC/OS-II* The Real-Time Kernel* (c) Copyright 1992-2002, Jean J. L
COS-II中OS_Q.C源码中文注释版Tag内容描述:
1、 uC/OS-II* The Real-Time Kernel* (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL* All Rights Reserved* File : uCOS_II.C* By : Jean J. Labrosse*/ #define OS_GLOBALS /* Declare GLOBAL variables */#include “includes.h“ #define OS_MASTER_FILE /* Prevent the following files from i。
2、 uC/OS-II* The Real-Time Kernel* MUTUAL EXCLUSION SEMAPHORE MANAGEMENT* (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL* All Rights Reserved* File : OS_MUTEX.C* By : Jean J. Labrosse互斥型信号量管理*/ #ifndef OS_MASTER_FILE#include “includes.h“#endif /*。
3、 uC/OS-II* The Real-Time Kernel* SEMAPHORE MANAGEMENT* (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL* All Rights Reserved* File : OS_SEM.C* By : Jean J. Labrosse*/ #ifndef OS_MASTER_FILE#include “includes.h“#endif #if OS_SEM_EN 0/*。
4、 uC/OS-II* The Real-Time Kernel* EVENT FLAG MANAGEMENT* (c) Copyright 2001-2002, Jean J. Labrosse, Weston, FL* All Rights Reserved* File : OS_FLAG.C* By : Jean J. Labrosse*/ #ifndef OS_MASTER_FILE#include “INCLUDES.H“#endif #if (OS_VERSION = 251) static BOOLEAN OS_FlagTaskRdy(OS_FLAG_NODE *pnode, OS。
5、 uC/OS-II* The Real-Time Kernel* TASK MANAGEMENT* (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL* All Rights Reserved* File : OS_TASK.C* By : Jean J. Labrosse*/ #ifndef OS_MASTER_FILE#include “includes.h“#endif /*。
6、 uC/OS-II* The Real-Time Kernel* MESSAGE QUEUE MANAGEMENT* (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL* All Rights Reserved* File : OS_Q.C* By : Jean J. Labrosse*/ #ifndef OS_MASTER_FILE/防止编译器包含一些代码#include “includes.h“#endif #if (OS_Q_EN 0) #endifvoid *msg;OS_Q *pq; #if OS_ARG_CHK_EN 0if。