My Project
Public Member Functions | Private Attributes
vspace::WaitSemaphoreEvent Class Reference

#include <vspace.h>

Public Member Functions

 WaitSemaphoreEvent (VRef< Semaphore > sem)
 
virtual bool start_listen (internals::ipc_signal_t sig)
 
virtual void stop_listen ()
 
void complete ()
 

Private Attributes

VRef< Semaphore_sem
 

Detailed Description

Definition at line 1266 of file vspace.h.

Constructor & Destructor Documentation

◆ WaitSemaphoreEvent()

vspace::WaitSemaphoreEvent::WaitSemaphoreEvent ( VRef< Semaphore sem)
inline

Definition at line 1271 of file vspace.h.

1271 : _sem(sem) {
1272 }
VRef< Semaphore > _sem
Definition: vspace.h:1268

Member Function Documentation

◆ complete()

void vspace::WaitSemaphoreEvent::complete ( )
inline

Definition at line 1279 of file vspace.h.

1279 {
1280 }

◆ start_listen()

virtual bool vspace::WaitSemaphoreEvent::start_listen ( internals::ipc_signal_t  sig)
inlinevirtual

Implements vspace::Event.

Definition at line 1273 of file vspace.h.

1273 {
1274 return _sem->start_wait(sig);
1275 }

◆ stop_listen()

virtual void vspace::WaitSemaphoreEvent::stop_listen ( )
inlinevirtual

Implements vspace::Event.

Definition at line 1276 of file vspace.h.

1276 {
1277 _sem->stop_wait();
1278 }

Field Documentation

◆ _sem

VRef<Semaphore> vspace::WaitSemaphoreEvent::_sem
private

Definition at line 1268 of file vspace.h.


The documentation for this class was generated from the following file: