C++ TargetRTS
Loading...
Searching...
No Matches
extension
rsa_rt
C++
TargetRTS
include
RTLock.h
1
/*******************************************************************************
2
* Licensed Materials - Property of HCL
3
* (c) Copyright HCL Technologies Ltd. 2025. All Rights Reserved.
4
*******************************************************************************/
5
#ifndef __RTLock_h__
6
#define __RTLock_h__ included
7
8
class
RTMutex;
9
33
class
RTLock
{
34
public
:
35
RTLock
(RTMutex& mutex);
36
~RTLock
(
void
);
37
38
protected
:
39
RTMutex& _mutex;
40
41
private
:
42
// unavailable methods
43
RTLock
(
const
RTLock
&);
44
RTLock
& operator=(
const
RTLock
&);
45
};
46
47
#endif
RTLock
Special utility class that allows to protect a piece of code from being accessed by multiple executio...
Definition:
RTLock.h:33
Generated by
1.9.6