GM6000 Digital Heater Controller Branch: main
SDX-1330
GlobalLock.h
Go to the documentation of this file.
1#ifndef Cpl_System_GlobalLock_h_
2#define Cpl_System_GlobalLock_h_
3/*-----------------------------------------------------------------------------
4* This file is part of the Colony.Core Project. The Colony.Core Project is an
5* open source project with a BSD type of licensing agreement. See the license
6* agreement (license.txt) in the top/ directory or on the Internet at
7* http://integerfox.com/colony.core/license.txt
8*
9* Copyright (c) 2014-2022 John T. Taylor
10*
11* Redistributions of the source code must retain the above copyright notice.
12*----------------------------------------------------------------------------*/
13/** @file */
14
15
16///
17namespace Cpl {
18///
19namespace System {
20
21/** This class defines an interface for a "Global Lock". A Global Lock provides
22 mutual exclusion and/or a critical section protection similar to a Mutex
23 except that is it intended to be lighter weight and/or have faster
24 performance than a traditional Mutex. However, the performance gain comes
25 with the following constraints:
26
27 o Non recursive semantics. The calling thread CANNOT attempt to acquire
28 the lock a second time once it has already acquire the lock.
29
30 o The code that is protected by this lock MUST BE VERY SHORT time
31 wise and NOT call an operating system methods (e.g. any Cpl::System
32 methods).
33
34 Why the above the constraints? The GlobalLock interface is intended to
35 be an abstraction for disable/enable interrupts when running on a RTOS
36 platform. So, use GlobalLocks with care and always honor the above constraints.
37 */
39{
40
41public:
42 /** This method is invoked prior to entering a critical
43 section. If another thread currently "owns" the
44 lock, the current thread will "wait" until it
45 can obtain ownership before proceeding.
46 */
47 void static begin( void );
48
49 /** This method is invoke at the end of a critical
50 section. This call will release the ownership of
51 the lock.
52 */
53 void static end( void );
54
55};
56
57
58
59}; // end namespaces
60};
61#endif // end header latch
This class defines an interface for a "Global Lock".
Definition GlobalLock.h:39
static void begin(void)
This method is invoked prior to entering a critical section.
static void end(void)
This method is invoke at the end of a critical section.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20