Version: 3.2.5

Detailed Description

The functions and macros here mainly exist to make it possible to write code which may be compiled in multi thread build (wxUSE_THREADS = 1) as well as in single thread configuration (wxUSE_THREADS = 0).

For example, a static variable must be protected against simultaneous access by multiple threads in the former configuration but in the latter the extra overhead of using the critical section is not needed. To solve this problem, the wxCRITICAL_SECTION() macro may be used to create and use the critical section only when needed.

See also
wxThread, wxMutex, Multithreading Overview

Related class group: Threading

Macros

#define wxCRIT_SECT_DECLARE(cs)
 This macro declares a (static) critical section object named cs if wxUSE_THREADS is 1 and does nothing if it is 0. More...
 
#define wxCRIT_SECT_DECLARE_MEMBER(cs)
 This macro declares a critical section object named cs if wxUSE_THREADS is 1 and does nothing if it is 0. More...
 
#define wxCRIT_SECT_LOCKER(name, cs)
 This macro creates a wxCriticalSectionLocker named name and associated with the critical section cs if wxUSE_THREADS is 1 and does nothing if it is 0. More...
 
#define wxCRITICAL_SECTION(name)
 This macro combines wxCRIT_SECT_DECLARE() and wxCRIT_SECT_LOCKER(): it creates a static critical section object and also the lock object associated with it. More...
 
#define wxLEAVE_CRIT_SECT(critical_section)
 This macro is equivalent to critical_section.Leave() if wxUSE_THREADS is 1 and does nothing if it is 0. More...
 
#define wxENTER_CRIT_SECT(critical_section)
 This macro is equivalent to critical_section.Enter() if wxUSE_THREADS is 1 and does nothing if it is 0. More...
 

Functions

bool wxIsMainThread ()
 Returns true if this thread is the main one. More...
 
void wxMutexGuiEnter ()
 This function must be called when any thread other than the main GUI thread wants to get access to the GUI library. More...
 
void wxMutexGuiLeave ()
 This function is only defined on platforms which support preemptive threads. More...
 

Macro Definition Documentation

◆ wxCRIT_SECT_DECLARE

#define wxCRIT_SECT_DECLARE (   cs)

This macro declares a (static) critical section object named cs if wxUSE_THREADS is 1 and does nothing if it is 0.

Include file:

#include <wx/thread.h> 

◆ wxCRIT_SECT_DECLARE_MEMBER

#define wxCRIT_SECT_DECLARE_MEMBER (   cs)

This macro declares a critical section object named cs if wxUSE_THREADS is 1 and does nothing if it is 0.

As it doesn't include the static keyword (unlike wxCRIT_SECT_DECLARE()), it can be used to declare a class or struct member which explains its name.

Include file:

#include <wx/thread.h> 

◆ wxCRIT_SECT_LOCKER

#define wxCRIT_SECT_LOCKER (   name,
  cs 
)

This macro creates a wxCriticalSectionLocker named name and associated with the critical section cs if wxUSE_THREADS is 1 and does nothing if it is 0.

Include file:

#include <wx/thread.h> 

◆ wxCRITICAL_SECTION

#define wxCRITICAL_SECTION (   name)

This macro combines wxCRIT_SECT_DECLARE() and wxCRIT_SECT_LOCKER(): it creates a static critical section object and also the lock object associated with it.

Because of this, it can be only used inside a function, not at global scope. For example:

int IncCount()
{
static int s_counter = 0;
return ++s_counter;
}
#define wxCRITICAL_SECTION(name)
This macro combines wxCRIT_SECT_DECLARE() and wxCRIT_SECT_LOCKER(): it creates a static critical sect...
Definition: thread.h:1784

Note that this example assumes that the function is called the first time from the main thread so that the critical section object is initialized correctly by the time other threads start calling it, if this is not the case this approach can not be used and the critical section must be made a global instead.

Include file:

#include <wx/thread.h> 

◆ wxENTER_CRIT_SECT

#define wxENTER_CRIT_SECT (   critical_section)

This macro is equivalent to critical_section.Enter() if wxUSE_THREADS is 1 and does nothing if it is 0.

Include file:

#include <wx/thread.h> 

◆ wxLEAVE_CRIT_SECT

#define wxLEAVE_CRIT_SECT (   critical_section)

This macro is equivalent to critical_section.Leave() if wxUSE_THREADS is 1 and does nothing if it is 0.

Include file:

#include <wx/thread.h> 

Function Documentation

◆ wxIsMainThread()

bool wxIsMainThread ( )

Returns true if this thread is the main one.

Always returns true if wxUSE_THREADS is 0.

Include file:

#include <wx/thread.h> 

◆ wxMutexGuiEnter()

void wxMutexGuiEnter ( )

This function must be called when any thread other than the main GUI thread wants to get access to the GUI library.

This function will block the execution of the calling thread until the main thread (or any other thread holding the main GUI lock) leaves the GUI library and no other thread will enter the GUI library until the calling thread calls wxMutexGuiLeave().

Typically, these functions are used like this:

void MyThread::Foo()
{
// before doing any GUI calls we must ensure that
// this thread is the only one doing it!
// Call GUI here:
my_window->DrawSomething();
}
void wxMutexGuiEnter()
This function must be called when any thread other than the main GUI thread wants to get access to th...
void wxMutexGuiLeave()
This function is only defined on platforms which support preemptive threads.

This function is only defined on platforms which support preemptive threads and only works under some ports (wxMSW currently).

Note
Under GTK, no creation of top-level windows is allowed in any thread but the main one.

Include file:

#include <wx/thread.h> 

◆ wxMutexGuiLeave()

void wxMutexGuiLeave ( )

This function is only defined on platforms which support preemptive threads.

See also
wxMutexGuiEnter()

Include file:

#include <wx/thread.h>