GM6000 Digital Heater Controller Branch: main
SDX-1330
Signable.h
Go to the documentation of this file.
1#ifndef Cpl_System_Signable_h_
2#define Cpl_System_Signable_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#include "Cpl/Container/Item.h"
16
17
18///
19namespace Cpl {
20///
21namespace System {
22
23/** This abstract class defines the interface by which a client
24 can cause an object that is waiting-on-a-signal to become
25 unblocked.
26 */
28{
29public:
30 /// Virtual destructor
31 virtual ~Signable() {};
32
33public:
34 /** This method is called by client to cause the server to become
35 unblock and ready to run. This method can ONLY be called from
36 a thread context. The method returns zero on success.
37 */
38 virtual int signal( void ) noexcept =0;
39
40 /** Same as signal(), EXCEPT this method can ONLY be called from
41 supervisor mode and/or ISR contexts. The method returns zero on
42 success.
43 */
44 virtual int su_signal( void ) noexcept = 0;
45};
46
47
48}; // end namespaces
49};
50#endif // end header latch
This class is used by the Container classes to implement a various types of singly linked containers.
Definition Item.h:33
This abstract class defines the interface by which a client can cause an object that is waiting-on-a-...
Definition Signable.h:28
virtual ~Signable()
Virtual destructor.
Definition Signable.h:31
virtual int su_signal(void) noexcept=0
Same as signal(), EXCEPT this method can ONLY be called from supervisor mode and/or ISR contexts.
virtual int signal(void) noexcept=0
This method is called by client to cause the server to become unblock and ready to run.
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20