forked from richard-damon/FreeRTOScpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLock.cpp
74 lines (70 loc) · 2.31 KB
/
Lock.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/** ********************************************************************
* @file Lock.cpp
* @author rdamon
* @copyright Copyright (c) 2017. Optics 1, Inc. All Rights Reserved.
* Permission to use, copy, modify, and distribute this software and
* its documentation for any purpose, without fee and without a signed
* licensing agreement, is hereby prohibited. Any unauthorized
* reproduction or distribution of this software, or any portion of it,
* may result in severe civil and criminal penalties, and will be
* prosecuted to the maximum extent possible under the law.
* \n\n
* This document may contain technical data whose export is restricted by
* the U.S. Department of State, under the Arms Export Control Act
* (Title 22, U.S.C., Section 2751) and the International Traffic in Arms
* Regulations (Title 22 CFR §120-130). Licenses approved by the Department of
* State are required for the export (as defined in ITAR 22 CFR §120.17) of
* such technical data to any foreign person or organization (as defined in
* ITAR 22 CFR §120.16) either in the United States or abroad. Further
* distribution of any technical data contained in this document, without the
* prior written approval of the Department of State, is a violation of these
* export laws and could subject the offender to severe criminal penalties.
* Reference TA-7603-10A
* \n\n
* Use, duplication, or disclosure of this sheet is subject to the restrictions
* above.
* \n\n
* Paper copies of this document are not controlled and are for reference only.
* All references to this document shall be taken from the electronic &
* controlled format
* OPTICS1 Proprietary Information
*
* @date Jun 6, 2017 Created
*
* Description:
* @brief
*
**********************************************************************/
#include <Lock.h>
Lock::Lock(Lockable& myLockable, bool mylocked, TickType_t wait) :
lockable(myLockable),
lockCnt(0)
{
if(mylocked) lock(wait);
}
Lock::~Lock() {
// on destruct, remove all locks.
if(lockCnt > 0) {
lockable.give();
}
lockCnt = 0;
}
bool Lock::lock(TickType_t wait) {
if(lockCnt > 0) {
lockCnt++;
return true;
}
if(lockable.take(wait)) {
lockCnt++;
return true;
}
return false;
}
void Lock::unlock() {
if(lockCnt > 0) { // ignore extra unlocks.
lockCnt--;
if(lockCnt == 0) {
lockable.give();
}
}
}