Skip to content
Snippets Groups Projects
Commit 755187b6 authored by Martine Lenders's avatar Martine Lenders
Browse files

Merge pull request #1489 from LudwigOrtmann/minidoc

doc:   #1440 follow up
parents 62966589 ce4aaa69
No related branches found
No related tags found
No related merge requests found
/*
* Copyright (C) 2013 Freie Universität Berlin
* Copyright (C) 2013, 2014 Freie Universität Berlin
*
* This file subject to the terms and conditions of the GNU Lesser General
* Public License. See the file LICENSE in the top level directory for more
......@@ -15,7 +15,6 @@
* @file mutex.h
* @brief RIOT synchronization API
*
* @author Freie Universität Berlin, Computer Systems & Telematics
* @author Kaspar Schleiser <kaspar@schleiser.de>
*/
......@@ -30,15 +29,15 @@
typedef struct mutex_t {
/* fields are managed by mutex functions, don't touch */
/**
* @internal
* @brief The value of the mutex; 0 if unlocked, 1 if locked. **Must
* never be changed by the user.**
* @internal
*/
unsigned int val;
/**
* @internal
* @brief The process waiting queue of the mutex. **Must never be changed
* by the user.**
* @internal
*/
queue_node_t queue;
} mutex_t;
......
......@@ -43,7 +43,7 @@ SYMBOL_CACHE_SIZE = 0
#---------------------------------------------------------------------------
EXTRACT_ALL = NO
EXTRACT_PRIVATE = NO
EXTRACT_STATIC = NO
EXTRACT_STATIC = YES
EXTRACT_LOCAL_CLASSES = YES
EXTRACT_LOCAL_METHODS = NO
EXTRACT_ANON_NSPACES = NO
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment