FreeRTOS Addons
Loading...
Searching...
No Matches
condition_variable.hpp
1/****************************************************************************
2 *
3 * Copyright (c) 2017, Michael Becker (michael.f.becker@gmail.com)
4 *
5 * This file is part of the FreeRTOS Add-ons project.
6 *
7 * Source Code:
8 * https://github.com/michaelbecker/freertos-addons
9 *
10 * Project Page:
11 * http://michaelbecker.github.io/freertos-addons/
12 *
13 * On-line Documentation:
14 * http://michaelbecker.github.io/freertos-addons/docs/html/index.html
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a
17 * copy of this software and associated documentation files
18 * (the "Software"), to deal in the Software without restriction, including
19 * without limitation the rights to use, copy, modify, merge, publish,
20 * distribute, sublicense, and/or sell copies of the Software, and to
21 * permit persons to whom the Software is furnished to do so,subject to the
22 * following conditions:
23 *
24 * + The above copyright notice and this permission notice shall be included
25 * in all copies or substantial portions of the Software.
26 * + Credit is appreciated, but not required, if you find this project
27 * useful enough to include in your application, product, device, etc.
28 *
29 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
30 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
31 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
32 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
33 * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
34 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
35 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
36 *
37 ***************************************************************************/
38
39
40#include "freertos-config.h"
41
42#ifndef CONDITION_VARIABLE_HPP_
43#define CONDITION_VARIABLE_HPP_
44
45#include <list>
46#include "mutex.hpp"
47
48
54#ifdef CPP_FREERTOS_CONDITION_VARIABLES
55
56
57namespace cpp_freertos {
58
59//
60// Forward declaration. We need to prevent a circular dependency
61// between the Thread class and the ConditionVariable class.
62//
63class Thread;
64
65
77
79 //
80 // Public API
81 //
83 public:
84
89
94 void Signal();
95
99 void Broadcast();
100
101
103 //
104 // Private API
105 // The internals of this wrapper class.
106 //
108 private:
109
113 MutexStandard Lock;
114
118 std::list<Thread *> WaitList;
119
124 void AddToWaitList(Thread *thread);
125
132 friend class Thread;
133};
134
135
136}
137
138#endif
139
140#endif
141
Definition: condition_variable.hpp:76
void Signal()
Definition: ccondition_variable.cpp:77
void Broadcast()
Definition: ccondition_variable.cpp:98
ConditionVariable()
Definition: ccondition_variable.cpp:52
Definition: mutex.hpp:171
Definition: thread.hpp:79
Definition: condition_variable.hpp:57