VTK
|
A class for performing multithreaded execution. More...
#include <vtkMultiThreader.h>
A class for performing multithreaded execution.
vtkMultithreader is a class that provides support for multithreaded execution using sproc() on an SGI, or pthread_create on any platform supporting POSIX threads. This class can be used to execute a single method on multiple threads, or to specify a method per thread.
Definition at line 93 of file vtkMultiThreader.h.
Reimplemented from vtkObject.
Definition at line 98 of file vtkMultiThreader.h.
vtkMultiThreader::vtkMultiThreader | ( | ) | [protected] |
vtkMultiThreader::~vtkMultiThreader | ( | ) | [protected] |
static vtkMultiThreader* vtkMultiThreader::New | ( | ) | [static] |
Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
Reimplemented from vtkObject.
static int vtkMultiThreader::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
virtual int vtkMultiThreader::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.
Reimplemented from vtkObject.
static vtkMultiThreader* vtkMultiThreader::SafeDownCast | ( | vtkObjectBase * | o | ) | [static] |
Reimplemented from vtkObject.
virtual vtkObjectBase* vtkMultiThreader::NewInstanceInternal | ( | ) | const [protected, virtual] |
Reimplemented from vtkObject.
vtkMultiThreader* vtkMultiThreader::NewInstance | ( | ) | const |
Reimplemented from vtkObject.
void vtkMultiThreader::PrintSelf | ( | ostream & | os, |
vtkIndent | indent | ||
) | [virtual] |
virtual void vtkMultiThreader::SetNumberOfThreads | ( | int | ) | [virtual] |
Get/Set the number of threads to create. It will be clamped to the range 1 - VTK_MAX_THREADS, so the caller of this method should check that the requested number of threads was accepted.
virtual int vtkMultiThreader::GetNumberOfThreads | ( | ) | [virtual] |
Get/Set the number of threads to create. It will be clamped to the range 1 - VTK_MAX_THREADS, so the caller of this method should check that the requested number of threads was accepted.
static void vtkMultiThreader::SetGlobalMaximumNumberOfThreads | ( | int | val | ) | [static] |
Set/Get the maximum number of threads to use when multithreading. This limits and overrides any other settings for multithreading. A value of zero indicates no limit.
static int vtkMultiThreader::GetGlobalMaximumNumberOfThreads | ( | ) | [static] |
Set/Get the maximum number of threads to use when multithreading. This limits and overrides any other settings for multithreading. A value of zero indicates no limit.
static void vtkMultiThreader::SetGlobalDefaultNumberOfThreads | ( | int | val | ) | [static] |
Set/Get the value which is used to initialize the NumberOfThreads in the constructor. Initially this default is set to the number of processors or VTK_MAX_THREADS (which ever is less).
static int vtkMultiThreader::GetGlobalDefaultNumberOfThreads | ( | ) | [static] |
Set/Get the value which is used to initialize the NumberOfThreads in the constructor. Initially this default is set to the number of processors or VTK_MAX_THREADS (which ever is less).
Execute the SingleMethod (as define by SetSingleMethod) using this->NumberOfThreads threads.
Execute the MultipleMethods (as define by calling SetMultipleMethod for each of the required this->NumberOfThreads methods) using this->NumberOfThreads threads.
void vtkMultiThreader::SetSingleMethod | ( | vtkThreadFunctionType | , |
void * | data | ||
) |
Set the SingleMethod to f() and the UserData field of the ThreadInfo that is passed to it will be data. This method (and all the methods passed to SetMultipleMethod) must be of type vtkThreadFunctionType and must take a single argument of type void *.
void vtkMultiThreader::SetMultipleMethod | ( | int | index, |
vtkThreadFunctionType | , | ||
void * | data | ||
) |
Set the MultipleMethod at the given index to f() and the UserData field of the ThreadInfo that is passed to it will be data.
int vtkMultiThreader::SpawnThread | ( | vtkThreadFunctionType | , |
void * | data | ||
) |
Create a new thread for the given function. Return a thread id which is a number between 0 and VTK_MAX_THREADS - 1. This id should be used to kill the thread at a later time.
void vtkMultiThreader::TerminateThread | ( | int | thread_id | ) |
Terminate the thread that was created with a SpawnThreadExecute()
int vtkMultiThreader::IsThreadActive | ( | int | threadID | ) |
Determine if a thread is still active
static vtkMultiThreaderIDType vtkMultiThreader::GetCurrentThreadID | ( | ) | [static] |
Get the thread identifier of the calling thread.
static int vtkMultiThreader::ThreadsEqual | ( | vtkMultiThreaderIDType | t1, |
vtkMultiThreaderIDType | t2 | ||
) | [static] |
Check whether two thread identifiers refer to the same thread.
int vtkMultiThreader::NumberOfThreads [protected] |
Definition at line 198 of file vtkMultiThreader.h.
ThreadInfo vtkMultiThreader::ThreadInfoArray[VTK_MAX_THREADS] [protected] |
Definition at line 203 of file vtkMultiThreader.h.
vtkThreadFunctionType vtkMultiThreader::SingleMethod [protected] |
Definition at line 206 of file vtkMultiThreader.h.
vtkThreadFunctionType vtkMultiThreader::MultipleMethod[VTK_MAX_THREADS] [protected] |
Definition at line 207 of file vtkMultiThreader.h.
int vtkMultiThreader::SpawnedThreadActiveFlag[VTK_MAX_THREADS] [protected] |
Definition at line 211 of file vtkMultiThreader.h.
vtkMutexLock* vtkMultiThreader::SpawnedThreadActiveFlagLock[VTK_MAX_THREADS] [protected] |
Definition at line 212 of file vtkMultiThreader.h.
vtkThreadProcessIDType vtkMultiThreader::SpawnedThreadProcessID[VTK_MAX_THREADS] [protected] |
Definition at line 213 of file vtkMultiThreader.h.
ThreadInfo vtkMultiThreader::SpawnedThreadInfoArray[VTK_MAX_THREADS] [protected] |
Definition at line 214 of file vtkMultiThreader.h.
void* vtkMultiThreader::SingleData [protected] |
Definition at line 219 of file vtkMultiThreader.h.
void* vtkMultiThreader::MultipleData[VTK_MAX_THREADS] [protected] |
Definition at line 220 of file vtkMultiThreader.h.