This is file "mutex.h".
//============================================================================== // Copyright (c) 2007-2009, Isaac Marino Bavaresco // All rights reserved // isaacbavaresco@yahoo.com.br //============================================================================== #ifndef __MUTEX_H__ #define __MUTEX_H__ //============================================================================== #include "FreeRTOS.h" //============================================================================== typedef void *xMutexHandle; xMutexHandle xMutexCreate( void ); signed portBASE_TYPE xMutexTake( xMutexHandle pxMutex, portTickType xTicksToWait ); signed portBASE_TYPE xMutexGive( xMutexHandle pxMutex, portBASE_TYPE Release ); signed portBASE_TYPE xDoIOwnTheMutex( xMutexHandle pxMutex ); //============================================================================== #endif // __MUTEX_H__ //==============================================================================
file: /Techref/member/IMB-yahoo-J86/mutex.h.htm, 1KB, , updated: 2009/7/9 09:03, local time: 2024/11/20 02:45,
owner: IMB-yahoo-J86,
18.224.43.85:LOG IN
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/Techref/member/IMB-yahoo-J86/mutex.h.htm"> A simple mutex implementation for FreeRTOS - mutex.h</A> |
Did you find what you needed? |