mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-09 16:36:51 +01:00
updated Thread::start documentation
- updated Thread::start documentation (port from 1.4.6)
This commit is contained in:
@@ -160,6 +160,10 @@ public:
|
|||||||
|
|
||||||
void start(Runnable& target);
|
void start(Runnable& target);
|
||||||
/// Starts the thread with the given target.
|
/// Starts the thread with the given target.
|
||||||
|
///
|
||||||
|
/// Note that the given Runnable object must remain
|
||||||
|
/// valid during the entire lifetime of the thread, as
|
||||||
|
/// only a reference to it is stored internally.
|
||||||
|
|
||||||
void start(Callable target, void* pData = 0);
|
void start(Callable target, void* pData = 0);
|
||||||
/// Starts the thread with the given target and parameter.
|
/// Starts the thread with the given target and parameter.
|
||||||
|
|||||||
Reference in New Issue
Block a user