projects
/
wxWidgets.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Missed labels to replace number of 'topicNNN' in anchors.
[wxWidgets.git]
/
src
/
unix
/
threadpsx.cpp
diff --git
a/src/unix/threadpsx.cpp
b/src/unix/threadpsx.cpp
index 1d32055350cf84481c9ce065fe27e427f7129cd0..3da088548daaf881646ef59286630d172693e54c 100644
(file)
--- a/
src/unix/threadpsx.cpp
+++ b/
src/unix/threadpsx.cpp
@@
-113,7
+113,7
@@
WX_DEFINE_ARRAY(wxThread *, wxArrayThread);
static wxArrayThread gs_allThreads;
// the id of the main thread
static wxArrayThread gs_allThreads;
// the id of the main thread
-static pthread_t gs_tidMain;
+static pthread_t gs_tidMain
= (pthread_t)-1
;
// the key for the pointer to the associated wxThread object
static pthread_key_t gs_keySelf;
// the key for the pointer to the associated wxThread object
static pthread_key_t gs_keySelf;
@@
-678,7
+678,7
@@
public:
private:
pthread_t m_threadId; // id of the thread
wxThreadState m_state; // see wxThreadState enum
private:
pthread_t m_threadId; // id of the thread
wxThreadState m_state; // see wxThreadState enum
- int m_prio; // in wxWi
ndow
s units: from 0 to 100
+ int m_prio; // in wxWi
dget
s units: from 0 to 100
// this flag is set when the thread should terminate
bool m_cancelled;
// this flag is set when the thread should terminate
bool m_cancelled;
@@
-893,8
+893,7
@@
void wxThreadInternal::Wait()
// wxLogDebug: it is possible to bring the system to its knees
// by creating too many threads and not joining them quite
// easily
// wxLogDebug: it is possible to bring the system to its knees
// by creating too many threads and not joining them quite
// easily
- wxLogError(_("Failed to join a thread, potential memory leak "
- "detected - please restart the program"));
+ wxLogError(_("Failed to join a thread, potential memory leak detected - please restart the program"));
}
m_shouldBeJoined = FALSE;
}
m_shouldBeJoined = FALSE;
@@
-958,7
+957,7
@@
wxThread *wxThread::This()
bool wxThread::IsMain()
{
bool wxThread::IsMain()
{
- return (bool)pthread_equal(pthread_self(), gs_tidMain);
+ return (bool)pthread_equal(pthread_self(), gs_tidMain)
|| gs_tidMain == (pthread_t)-1
;
}
void wxThread::Yield()
}
void wxThread::Yield()
@@
-970,7
+969,7
@@
void wxThread::Yield()
void wxThread::Sleep(unsigned long milliseconds)
{
void wxThread::Sleep(unsigned long milliseconds)
{
- wx
Us
leep(milliseconds);
+ wx
MilliS
leep(milliseconds);
}
int wxThread::GetCPUCount()
}
int wxThread::GetCPUCount()
@@
-1456,8
+1455,7
@@
wxThreadError wxThread::Kill()
void wxThread::Exit(ExitCode status)
{
wxASSERT_MSG( This() == this,
void wxThread::Exit(ExitCode status)
{
wxASSERT_MSG( This() == this,
- _T("wxThread::Exit() can only be called in the "
- "context of the same thread") );
+ _T("wxThread::Exit() can only be called in the context of the same thread") );
if ( m_isDetached )
{
if ( m_isDetached )
{
@@
-1496,8
+1494,7
@@
void wxThread::Exit(ExitCode status)
bool wxThread::TestDestroy()
{
wxASSERT_MSG( This() == this,
bool wxThread::TestDestroy()
{
wxASSERT_MSG( This() == this,
- _T("wxThread::TestDestroy() can only be called in the "
- "context of the same thread") );
+ _T("wxThread::TestDestroy() can only be called in the context of the same thread") );
m_critsect.Enter();
m_critsect.Enter();
@@
-1530,8
+1527,7
@@
wxThread::~wxThread()
if ( m_internal->GetState() != STATE_EXITED &&
m_internal->GetState() != STATE_NEW )
{
if ( m_internal->GetState() != STATE_EXITED &&
m_internal->GetState() != STATE_NEW )
{
- wxLogDebug(_T("The thread %ld is being destroyed although it is still "
- "running! The application may crash."), GetId());
+ wxLogDebug(_T("The thread %ld is being destroyed although it is still running! The application may crash."), GetId());
}
m_critsect.Leave();
}
m_critsect.Leave();
@@
-1597,8
+1593,7
@@
bool wxThreadModule::OnInit()
int rc = pthread_key_create(&gs_keySelf, NULL /* dtor function */);
if ( rc != 0 )
{
int rc = pthread_key_create(&gs_keySelf, NULL /* dtor function */);
if ( rc != 0 )
{
- wxLogSysError(rc, _("Thread module initialization failed: "
- "failed to create thread key"));
+ wxLogSysError(rc, _("Thread module initialization failed: failed to create thread key"));
return FALSE;
}
return FALSE;
}