The Pedigree Project  0.1
Public Member Functions | Static Public Member Functions | Private Attributes | List of all members
SelectEvent Class Reference

#include <select-syscalls.h>

+ Inheritance diagram for SelectEvent:
+ Collaboration diagram for SelectEvent:

Public Member Functions

 SelectEvent ()
 
 SelectEvent (Semaphore *pSemaphore, fd_set *pFdSet, size_t fdIdx, File *pFile)
 
void fire ()
 
FilegetFile ()
 
virtual size_t serialize (uint8_t *pBuffer)
 
virtual size_t getNumber ()
 
- Public Member Functions inherited from Event
 Event (uintptr_t handlerAddress, bool isDeletable, size_t specificNestingLevel=~0UL)
 
virtual bool isDeletable ()
 
uintptr_t getHandlerAddress ()
 
size_t getSpecificNestingLevel ()
 
 Event (const Event &other)
 
Eventoperator= (const Event &other)
 
void registerThread (Thread *thread)
 
void deregisterThread (Thread *thread)
 
size_t pendingCount ()
 
virtual void waitForDeliveries ()
 

Static Public Member Functions

static bool unserialize (uint8_t *pBuffer, SelectEvent &event)
 
- Static Public Member Functions inherited from Event
static uintptr_t getTrampoline ()
 
static uintptr_t getSecondaryTrampoline ()
 
static uintptr_t getHandlerBuffer ()
 
static uintptr_t getLastHandlerBuffer ()
 
static bool unserialize (uint8_t *pBuffer, Event &event)
 
static size_t getEventType (uint8_t *pBuffer)
 

Private Attributes

Semaphorem_pSemaphore
 
fd_set * m_pFdSet
 
size_t m_FdIdx
 
Filem_pFile
 

Additional Inherited Members

- Protected Attributes inherited from Event
uintptr_t m_HandlerAddress
 
bool m_bIsDeletable
 
size_t m_NestingLevel
 
size_t m_Magic
 
List< Thread * > m_Threads
 
Spinlock m_Lock
 

Detailed Description

Event class for passing to File::monitor.

Definition at line 28 of file select-syscalls.h.

Constructor & Destructor Documentation

SelectEvent::SelectEvent ( )

The constructor takes a semaphore that it should signal when it fires, and an fd_set with an index to set.

Member Function Documentation

virtual size_t SelectEvent::getNumber ( )
inlinevirtual

Returns the event number / ID.

Implements Event.

Definition at line 50 of file select-syscalls.h.

virtual size_t SelectEvent::serialize ( uint8_t *  pBuffer)
virtual

Given a buffer EVENT_LIMIT bytes long, take the variables present in this object and convert them to a binary form.

It can be assumed that this function will only be called when the Event is about to be dispatched, and so the inhibited mask of the current Thread is available to be changed to what the event handler requires. This change will be undone when the handler completes.

Parameters
pBufferThe buffer to serialize to.
Returns
The number of bytes serialized.

Implements Event.


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