摘要: 一、互斥量控制块:在include/rtdef.h中#ifdef RT_USING_MUTEX/** * Mutual exclusion (mutex) structure */struct rt_mutex{ struct rt_ipc_object parent; ... 阅读全文
posted @ 2015-03-04 17:52 King先生 阅读(2130) 评论(0) 推荐(0) 编辑
摘要: 一、信号量控制块:在include/rtdef.h中#ifdef RT_USING_SEMAPHORE/** * Semaphore structure */struct rt_semaphore{ struct rt_ipc_object parent; ... 阅读全文
posted @ 2015-03-04 17:20 King先生 阅读(5792) 评论(0) 推荐(0) 编辑
摘要: 一、进程间通信机制rt-thread操作系统的IPC(Inter-Process Communication,进程间同步与通信)包含有中断锁、调度器锁、信号量、互斥锁、事件、邮箱、消息队列。其中前5个主要表现为线程间同步,邮箱与消息队列表现为线程间通信。本文主要介绍它们的一些特性及使用场合。1、中断... 阅读全文
posted @ 2015-03-04 12:06 King先生 阅读(5058) 评论(0) 推荐(0) 编辑