X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/631f1bfed5d2df0215035207355d838328237578..b6bff3019ee6a032d967ef75c48255613661dbee:/docs/latex/wx/thread.tex diff --git a/docs/latex/wx/thread.tex b/docs/latex/wx/thread.tex index 742473d5da..89bc18dd24 100644 --- a/docs/latex/wx/thread.tex +++ b/docs/latex/wx/thread.tex @@ -12,6 +12,10 @@ such as \helpref{mutexes}{wxmutex} and/or \helpref{critical sections}{wxcritical None. +\wxheading{Include files} + + + \wxheading{See also} \helpref{wxMutex}{wxmutex}, \helpref{wxCondition}{wxcondition}, \helpref{wxCriticalSection}{wxcriticalsection} @@ -54,7 +58,7 @@ One of: \membersection{wxThread::Delete}\label{wxthreaddelete} -\func{\void}{Delete}{\void} +\func{void}{Delete}{\void} This function should be called to terminate this thread. Unlike \helpref{Kill}{wxthreadkill}, it gives the target thread the time to terminate gracefully. Because of this, however, this function @@ -66,6 +70,16 @@ Delete() may be called for thread in any state: running, paused or even not yet it must be called if \helpref{Create}{wxthreadcreate} or \helpref{Run}{wxthreadrun} fail to free the memory occupied by the thread object. +\membersection{wxThread::Entry}\label{wxthreadentry} + +\func{virtual void *}{Entry}{\void} + +This is the entry point of the thread. This function is pure virtual and must +be implemented by any derived class. The thread execution will start here. + +The returned value is the thread exit code but is currently ignored in +wxWindows implementation (this will change in near future). + \membersection{wxThread::GetID}\label{wxthreadgetid} \constfunc{unsigned long}{GetID}{\void}