xLAB - acutators / led-mrf-osc_full_Latest_2

Dependencies:   addressable_leds

Dependents:   led-mrf-osc_full

Committer:
Jing_Qiu
Date:
Sat Mar 21 02:42:59 2015 +0000
Revision:
1:d4c1d8dc8ced
Parent:
0:284274252007
revised

Who changed what in which revision?

UserRevisionLine numberNew contents of line
Jing_Qiu 0:284274252007 1 /*----------------------------------------------------------------------------
Jing_Qiu 0:284274252007 2 * RL-ARM - RTX
Jing_Qiu 0:284274252007 3 *----------------------------------------------------------------------------
Jing_Qiu 0:284274252007 4 * Name: RT_MUTEX.H
Jing_Qiu 0:284274252007 5 * Purpose: Implements mutex synchronization objects
Jing_Qiu 0:284274252007 6 * Rev.: V4.60
Jing_Qiu 0:284274252007 7 *----------------------------------------------------------------------------
Jing_Qiu 0:284274252007 8 *
Jing_Qiu 0:284274252007 9 * Copyright (c) 1999-2009 KEIL, 2009-2012 ARM Germany GmbH
Jing_Qiu 0:284274252007 10 * All rights reserved.
Jing_Qiu 0:284274252007 11 * Redistribution and use in source and binary forms, with or without
Jing_Qiu 0:284274252007 12 * modification, are permitted provided that the following conditions are met:
Jing_Qiu 0:284274252007 13 * - Redistributions of source code must retain the above copyright
Jing_Qiu 0:284274252007 14 * notice, this list of conditions and the following disclaimer.
Jing_Qiu 0:284274252007 15 * - Redistributions in binary form must reproduce the above copyright
Jing_Qiu 0:284274252007 16 * notice, this list of conditions and the following disclaimer in the
Jing_Qiu 0:284274252007 17 * documentation and/or other materials provided with the distribution.
Jing_Qiu 0:284274252007 18 * - Neither the name of ARM nor the names of its contributors may be used
Jing_Qiu 0:284274252007 19 * to endorse or promote products derived from this software without
Jing_Qiu 0:284274252007 20 * specific prior written permission.
Jing_Qiu 0:284274252007 21 *
Jing_Qiu 0:284274252007 22 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Jing_Qiu 0:284274252007 23 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Jing_Qiu 0:284274252007 24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Jing_Qiu 0:284274252007 25 * ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE
Jing_Qiu 0:284274252007 26 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Jing_Qiu 0:284274252007 27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Jing_Qiu 0:284274252007 28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Jing_Qiu 0:284274252007 29 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Jing_Qiu 0:284274252007 30 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Jing_Qiu 0:284274252007 31 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Jing_Qiu 0:284274252007 32 * POSSIBILITY OF SUCH DAMAGE.
Jing_Qiu 0:284274252007 33 *---------------------------------------------------------------------------*/
Jing_Qiu 0:284274252007 34
Jing_Qiu 0:284274252007 35 /* Functions */
Jing_Qiu 0:284274252007 36 extern void rt_mut_init (OS_ID mutex);
Jing_Qiu 0:284274252007 37 extern OS_RESULT rt_mut_delete (OS_ID mutex);
Jing_Qiu 0:284274252007 38 extern OS_RESULT rt_mut_release (OS_ID mutex);
Jing_Qiu 0:284274252007 39 extern OS_RESULT rt_mut_wait (OS_ID mutex, U16 timeout);
Jing_Qiu 0:284274252007 40
Jing_Qiu 0:284274252007 41 /*----------------------------------------------------------------------------
Jing_Qiu 0:284274252007 42 * end of file
Jing_Qiu 0:284274252007 43 *---------------------------------------------------------------------------*/
Jing_Qiu 0:284274252007 44