RCriticalSection Class Reference

#include <e32std.h>

class RCriticalSection : private RSemaphore

Inherits from

Detailed Description

A handle to a critical section.

A critical section itself is a kernel object, and is implemented using a semaphore. The class RCriticalSection inherits privately from RSemaphore as a matter of implementation and this is, in effect, equivalent to using a semaphore.

The public functions of RSemaphore are not part of the public API of this class.

As with all handles, they should be closed after use. This class provides the necessary Close() function, which should be called when the handle is no longer required.

See also: RHandleBase::Close

Constructor & Destructor Documentation

RCriticalSection ( )

IMPORT_CRCriticalSection()

Default constructor.

Member Function Documentation

Close ( )

IMPORT_C voidClose()

Reimplemented from RHandleBase::Close()

Closes the handle to the critical section.

As a critical section object is implemented using a semaphore, this has the effect of closing the handle to the semaphore.

CreateLocal ( TOwnerType )

IMPORT_C TIntCreateLocal(TOwnerTypeaType = EOwnerProcess)

Creates a critical section and opens this handle to the critical section.

The kernel side object representing the critical section is unnamed. This means that it is not possible to search for the critical section, which makes it local to the current process.

By default, any thread in the process can use this instance of RCriticalSection to access the critical section. However, specifying EOwnerThread as the parameter to this function, means that only the creating thread can use this instance of RCriticalSection to access the critical section; any other thread in this process that wants to access the critical section must duplicate this handle.

See also: RHandleBase::Duplicate()

ParameterDescription
aTypeAn enumeration whose enumerators define the ownership of this critical section handle. If not explicitly specified, EOwnerProcess is taken as default.

Returns: KErrNone if successful otherwise another of the system wide error codes.

IsBlocked ( )

TBool IsBlocked()const [inline]

Tests whether the critical section is occupied by any thread.

Returns: True, if the critical section is occupied by another thread. False, otherwise.

Signal ( )

IMPORT_C voidSignal()

Reimplemented from RSemaphore::Signal()

Signals an exit from the critical section.

A thread calls this function when it exits from the critical section. The first eligible thread waiting on the critical section's queue of threads is removed from that queue and, provided that it is not suspended for any other reason, is marked as ready to run. That thread will, therefore, be the next to proceed into the critical section.

Wait ( )

IMPORT_C voidWait()

Reimplemented from RSemaphore::Wait()

Waits for the critical section to become free.

If no other thread is in the critical section, control returns immediately and the current thread can continue into the section.

If another thread is already in the critical section, the current thread is marked as waiting (on a semaphore); the current thread is added to a queue of threads maintained by this critical section.