source: rtems/cpukit/include/rtems/score/muteximpl.h @ 2463c10

5
Last change on this file since 2463c10 was 2463c10, checked in by Andreas Dachsberger <andreas.dachsberger@…>, on 04/18/19 at 07:43:41

doxygen: score: adjust doc in muteximpl.h to doxygen guidelines

Update #3706.

  • Property mode set to 100644
File size: 935 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup RTEMSScoreAPIMutex
5 *
6 * @brief Structures for the implementation of mutexes.
7 */
8
9/*
10 * Copyright (c) 2015, 2017 embedded brains GmbH.  All rights reserved.
11 *
12 *  embedded brains GmbH
13 *  Dornierstr. 4
14 *  82178 Puchheim
15 *  Germany
16 *  <rtems@embedded-brains.de>
17 *
18 * The license and distribution terms for this file may be
19 * found in the file LICENSE in this distribution or at
20 * http://www.rtems.org/license/LICENSE.
21 */
22
23#ifndef _RTEMS_SCORE_MUTEXIMPL_H
24#define _RTEMS_SCORE_MUTEXIMPL_H
25
26#include <rtems/score/threadqimpl.h>
27
28/**
29 * @addtogroup RTEMSScoreAPIMutex
30 *
31 * @{
32 */
33
34#ifdef __cplusplus
35extern "C" {
36#endif /* __cplusplus */
37
38typedef struct {
39  Thread_queue_Syslock_queue Queue;
40} Mutex_Control;
41
42typedef struct {
43  Mutex_Control Mutex;
44  unsigned int nest_level;
45} Mutex_recursive_Control;
46
47#ifdef __cplusplus
48}
49#endif /* __cplusplus */
50
51/** @} */
52
53#endif /* _RTEMS_SCORE_MUTEXIMPL_H */
Note: See TracBrowser for help on using the repository browser.