Platform-independent base class for running threads.
More...
#include <geogram/basic/process.h>
|
| Thread () |
| Thread constructor.
|
|
virtual void | run ()=0 |
| Starts the thread execution.
|
|
index_t | id () const |
| Gets the identifier of this thread.
|
|
void | ref () const |
| Increments the reference count.
|
|
void | unref () const |
| Decrements the reference count.
|
|
bool | is_shared () const |
| Check if the object is shared.
|
|
int | nb_refs () const |
| Gets the number of references that point to this object.
|
|
|
static Thread * | current () |
| Gets the current thread.
|
|
static index_t | current_id () |
| Gets the identifier of the current thread.
|
|
static void | ref (const Counted *counted) |
| Increments the reference count.
|
|
static void | unref (const Counted *counted) |
| Decrements the reference count.
|
|
|
| ~Thread () override |
|
| Counted () |
| Creates a reference counted object.
|
|
virtual | ~Counted () |
| Destroys a reference counted object.
|
|
Platform-independent base class for running threads.
A Thread object manages one thread of control within the program. Threads begin executing with run(). Operational threads can be created by creating a derived class and reimplement function run().
Threads are reference-counted objects. Their allocation and destruction can be automatically managed with Thread_var.
Definition at line 66 of file process.h.
◆ Thread()
◆ ~Thread()
◆ current()
static Thread * GEO::Thread::current |
( |
| ) |
|
|
static |
Gets the current thread.
- Returns
- A pointer to the instance of the currently running thread. If not running multiple threads, returns nullptr.
◆ current_id()
static index_t GEO::Thread::current_id |
( |
| ) |
|
|
inlinestatic |
Gets the identifier of the current thread.
- Returns
- the identifier of the current thread, i.e. an unsigned integer in the range [0, N-1] where N denotes the number of currently running threads. If not running multiple threads, returns 0.
Definition at line 107 of file process.h.
◆ id()
Gets the identifier of this thread.
- Returns
- the identifier of the thread, i.e. an unsigned integer in the range [0, N-1] where N denotes the number of currently running threads.
Definition at line 87 of file process.h.
◆ ThreadManager
The documentation for this class was generated from the following file: