]>
Commit | Line | Data |
---|---|---|
7c351dad GL |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: thread.cpp | |
3 | // Purpose: No thread support | |
4 | // Author: Original from Wolfram Gloger/Guilhem Lavaux | |
5 | // Modified by: | |
6 | // Created: 04/22/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Wolfram Gloger (1996, 1997); Guilhem Lavaux (1998) | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | #ifdef __GNUG__ | |
12 | #pragma implementation "thread.h" | |
13 | #endif | |
14 | ||
15 | #include "wx/wx.h" | |
c0392997 | 16 | #include "wx/module.h" |
8d31c138 | 17 | #include "wx/thread.h" |
7c351dad | 18 | |
ee4f8c2a | 19 | wxMutex::wxMutex() |
7c351dad | 20 | { |
b89156b5 | 21 | m_locked = 0; |
7c351dad GL |
22 | } |
23 | ||
ee4f8c2a | 24 | wxMutex::~wxMutex() |
7c351dad | 25 | { |
b89156b5 GL |
26 | if (m_locked) |
27 | wxDebugMsg("wxMutex warning: destroying a locked mutex (%d locks)\n", m_locked); | |
7c351dad GL |
28 | } |
29 | ||
c0392997 | 30 | wxMutexError wxMutex::Lock() |
7c351dad | 31 | { |
b89156b5 GL |
32 | m_locked++; |
33 | return MUTEX_NO_ERROR; | |
7c351dad GL |
34 | } |
35 | ||
c0392997 | 36 | wxMutexError wxMutex::TryLock() |
7c351dad | 37 | { |
b89156b5 GL |
38 | if (m_locked > 0) |
39 | return MUTEX_BUSY; | |
40 | m_locked++; | |
41 | return MUTEX_NO_ERROR; | |
7c351dad GL |
42 | } |
43 | ||
c0392997 | 44 | wxMutexError wxMutex::Unlock() |
7c351dad | 45 | { |
b89156b5 GL |
46 | if (m_locked == 0) |
47 | return MUTEX_UNLOCKED; | |
48 | m_locked--; | |
49 | return MUTEX_NO_ERROR; | |
7c351dad GL |
50 | } |
51 | ||
ee4f8c2a | 52 | wxCondition::wxCondition() |
7c351dad GL |
53 | { |
54 | } | |
55 | ||
ee4f8c2a | 56 | wxCondition::~wxCondition() |
7c351dad GL |
57 | { |
58 | } | |
59 | ||
60 | void wxCondition::Wait(wxMutex& WXUNUSED(mutex)) | |
61 | { | |
62 | } | |
63 | ||
64 | bool wxCondition::Wait(wxMutex& WXUNUSED(mutex), unsigned long WXUNUSED(sec), | |
65 | unsigned long WXUNUSED(nsec)) | |
66 | { | |
67 | return FALSE; | |
68 | } | |
69 | ||
ee4f8c2a | 70 | void wxCondition::Signal() |
7c351dad GL |
71 | { |
72 | } | |
73 | ||
ee4f8c2a | 74 | void wxCondition::Broadcast() |
7c351dad GL |
75 | { |
76 | } | |
77 | ||
c0392997 | 78 | struct wxThreadInternal { |
7c351dad GL |
79 | int thread_id; |
80 | void* exit_status; | |
81 | }; | |
82 | ||
c0392997 | 83 | wxThreadError wxThread::Create() |
7c351dad GL |
84 | { |
85 | p_internal->exit_status = Entry(); | |
86 | OnExit(); | |
b89156b5 | 87 | return THREAD_NO_ERROR; |
7c351dad GL |
88 | } |
89 | ||
c0392997 | 90 | wxThreadError wxThread::Destroy() |
7c351dad | 91 | { |
b89156b5 | 92 | return THREAD_RUNNING; |
7c351dad GL |
93 | } |
94 | ||
c0392997 | 95 | void wxThread::DeferDestroy( bool WXUNUSED(on) ) |
7c351dad GL |
96 | { |
97 | } | |
98 | ||
ee4f8c2a | 99 | void wxThread::TestDestroy() |
7c351dad GL |
100 | { |
101 | } | |
102 | ||
103 | void *wxThread::Join() | |
104 | { | |
105 | return p_internal->exit_status; | |
106 | } | |
107 | ||
ee4f8c2a | 108 | unsigned long wxThread::GetID() const |
7c351dad GL |
109 | { |
110 | return 0; | |
111 | } | |
112 | ||
ee4f8c2a | 113 | bool wxThread::IsMain() |
7c351dad GL |
114 | { |
115 | return TRUE; | |
116 | } | |
117 | ||
ee4f8c2a | 118 | bool wxThread::IsAlive() const |
7c351dad GL |
119 | { |
120 | return FALSE; | |
121 | } | |
122 | ||
123 | void wxThread::SetPriority(int WXUNUSED(prio)) { } | |
c0392997 | 124 | int wxThread::GetPriority() const { return 0; } |
7c351dad GL |
125 | |
126 | wxMutex wxMainMutex; // controls access to all GUI functions | |
127 | ||
128 | wxThread::wxThread() | |
129 | { | |
c0392997 | 130 | p_internal = new wxThreadInternal(); |
7c351dad GL |
131 | } |
132 | ||
133 | wxThread::~wxThread() | |
134 | { | |
c0392997 | 135 | Destroy(); |
7c351dad GL |
136 | Join(); |
137 | delete p_internal; | |
138 | } | |
139 | ||
140 | // The default callback just joins the thread and throws away the result. | |
141 | void wxThread::OnExit() | |
142 | { | |
143 | Join(); | |
144 | } | |
145 | ||
b89156b5 GL |
146 | |
147 | // Automatic initialization | |
148 | class wxThreadModule : public wxModule { | |
149 | DECLARE_DYNAMIC_CLASS(wxThreadModule) | |
150 | public: | |
151 | bool OnInit(); | |
152 | void OnExit(); | |
153 | }; | |
154 | ||
155 | bool wxThreadModule::OnInit() { | |
7c351dad | 156 | wxMainMutex.Lock(); |
b89156b5 | 157 | return TRUE; |
7c351dad GL |
158 | } |
159 | ||
c0392997 | 160 | void wxThreadModule::OnExit() |
7c351dad GL |
161 | { |
162 | wxMainMutex.Unlock(); | |
163 | } | |
164 | ||
b89156b5 | 165 | IMPLEMENT_DYNAMIC_CLASS(wxThreadModule, wxModule) |