updated Thread::start documentation

- updated Thread::start documentation (port from 1.4.6)
This commit is contained in:
aleks-f
2013-02-26 22:50:08 -06:00
parent 5654749e2b
commit e610afde4f

View File

@@ -160,6 +160,10 @@ public:
void start(Runnable& 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);
/// Starts the thread with the given target and parameter.