]> git.saurik.com Git - wxWidgets.git/blame - src/gtk/threadsgi.cpp
Added OnEraseBackground to wxNotebook on wxMSW to avoid black background;
[wxWidgets.git] / src / gtk / threadsgi.cpp
CommitLineData
7c351dad
GL
1/////////////////////////////////////////////////////////////////////////////
2// Name: threadsgi.cpp
3// Purpose: wxThread (SGI) Implementation
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 <stdio.h>
16#include <unistd.h>
17
18#include <signal.h>
19#include <sys/wait.h>
20#include <sys/prctl.h>
82052aff
GL
21#include "wx/thread.h"
22#include "wx/module.h"
23#include "wx/utils.h"
7c351dad
GL
24
25enum thread_state {
26 STATE_IDLE = 0,
27 STATE_RUNNING,
28 STATE_CANCELED,
29 STATE_EXITED
30};
31
32/////////////////////////////////////////////////////////////////////////////
33// Static variables
34/////////////////////////////////////////////////////////////////////////////
35
36static int p_mainid;
37wxMutex wxMainMutex;
38
39#include "threadgui.inc"
40
41/////////////////////////////////////////////////////////////////////////////
42// Unix implementations (SGI threads)
43/////////////////////////////////////////////////////////////////////////////
44
45class wxMutexInternal {
46public:
47 abilock_t p_mutex;
48};
49
50wxMutex::wxMutex()
51{
b89156b5 52 m_locked = 0;
7c351dad
GL
53 p_internal = new wxMutexInternal;
54 init_lock(&(p_internal->p_mutex));
55}
56
57wxMutex::~wxMutex()
58{
b89156b5
GL
59 if (m_locked > 0)
60 wxDebugMsg("wxMutex warning: freeing a locked mutex (%d locks)\n",
61 m_locked);
62 delete p_internal;
7c351dad
GL
63}
64
b89156b5 65wxMutexError wxMutex::Lock()
7c351dad
GL
66{
67 spin_lock(&(p_internal->p_mutex));
b89156b5
GL
68 m_locked++;
69 return MUTEX_NO_ERROR;
7c351dad
GL
70}
71
b89156b5 72wxMutexError wxMutex::TryLock()
7c351dad
GL
73{
74 if (acquire_lock(&(p_internal->p_mutex)) != 0)
b89156b5
GL
75 return MUTEX_BUSY;
76 m_locked++;
77 return MUTEX_NO_ERROR;
7c351dad
GL
78}
79
b89156b5 80wxMutexError wxMutex::Unlock()
7c351dad 81{
b89156b5
GL
82 if (m_locked == 0)
83 return MUTEX_UNLOCKED;
7c351dad 84 release_lock(&(p_internal->p_mutex));
b89156b5
GL
85 m_locked--;
86 return MUTEX_NO_ERROR;
7c351dad
GL
87}
88
b89156b5 89// GL: Don't know how it works on SGI. Wolfram ?
7c351dad 90
ee4f8c2a
JS
91wxCondition::wxCondition() {}
92wxCondition::~wxCondition() {}
7c351dad
GL
93int wxCondition::Wait(wxMutex& WXUNUSED(mutex)) { return 0;}
94int wxCondition::Wait(wxMutex& WXUNUSED(mutex), unsigned long WXUNUSED(sec),
95 unsigned long WXUNUSED(nsec)) { return 0; }
ee4f8c2a
JS
96int wxCondition::Signal() { return 0; }
97int wxCondition::Broadcast() { return 0; }
7c351dad
GL
98
99class
100wxThreadPrivate {
101public:
102 wxThreadPrivate() { thread_id = 0; state = STATE_IDLE; }
103 ~wxThreadPrivate() {}
104 static void SprocStart(void *ptr);
105 static void SignalHandler(int sig);
106public:
107 int state, thread_id;
108 void* exit_status;
109};
110
111void wxThreadPrivate::SprocStart(void *ptr)
112{
113 void* status;
114
115 wxThread *thr = (wxThread *)ptr;
116
117 thr->p_internal->thread_id = getpid();
118 thr->p_internal->exit_status = 0;
119 status = thr->Entry();
120 thr->Exit(status);
121}
122
123void wxThread::Exit(void* status)
124{
125 wxThread* ptr = this;
126 THREAD_SEND_EXIT_MSG(ptr);
127 p_internal->state = STATE_EXITED;
128 p_internal->exit_status = status;
129 _exit(0);
130}
131
b89156b5 132wxThreadError wxThread::Create()
7c351dad
GL
133{
134 if (p_internal->state != STATE_IDLE)
b89156b5 135 return THREAD_RUNNING;
7c351dad
GL
136 p_internal->state = STATE_RUNNING;
137 if (sproc(p_internal->SprocStart, PR_SALL, this) < 0) {
138 p_internal->state = STATE_IDLE;
b89156b5 139 return THREAD_NO_RESOURCE;
7c351dad 140 }
b89156b5 141 return THREAD_NO_ERROR;
7c351dad
GL
142}
143
c2dd8380 144wxThreadError wxThread::Destroy()
7c351dad
GL
145{
146 if (p_internal->state == STATE_RUNNING)
147 p_internal->state = STATE_CANCELED;
c2dd8380
GL
148
149 return THREAD_NO_ERROR;
150}
151
152wxThreadError wxThread::Pause()
153{
154 return THREAD_NO_ERROR;
155}
156
157wxThreadError wxThread::Resume()
158{
159 return THREAD_NO_ERROR;
7c351dad
GL
160}
161
162void *wxThread::Join()
163{
164 if (p_internal->state != STATE_IDLE) {
165 bool do_unlock = wxThread::IsMain();
166 int stat;
167
168 if (do_unlock)
169 wxMainMutex.Unlock();
170 waitpid(p_internal->thread_id, &stat, 0);
171 if (do_unlock)
172 wxMainMutex.Lock();
173 if (!WIFEXITED(stat) && !WIFSIGNALED(stat))
174 return 0;
175 p_internal->state = STATE_IDLE;
176 return p_internal->exit_status;
177 }
178 return 0;
179}
180
ee4f8c2a 181unsigned long wxThread::GetID() const
7c351dad
GL
182{
183 return (unsigned long)p_internal->thread_id;
184}
185
186void wxThread::TestDestroy()
187{
188 if (p_internal->state == STATE_CANCELED) {
189 p_internal->exit_status = 0;
190 _exit(0);
191 }
192}
193
194void wxThread::SetPriority(int prio)
195{
196}
197
ee4f8c2a 198int wxThread::GetPriority() const
7c351dad 199{
ee4f8c2a 200 return 0;
7c351dad
GL
201}
202
c2dd8380 203bool wxThread::IsMain()
7c351dad
GL
204{
205 return (int)getpid() == main_id;
206}
207
c2dd8380
GL
208bool wxThread::IsAlive() const
209{
210 return (p_internal->state == STATE_RUNNING);
211}
212
213bool wxThread::IsRunning() const
214{
215 return (p_internal->state == STATE_RUNNING);
216}
217
7c351dad
GL
218wxThread::wxThread()
219{
220 p_internal = new wxThreadPrivate();
221}
222
223wxThread::~wxThread()
224{
225 Cancel();
226 Join();
227 delete p_internal;
228}
229
230// The default callback just joins the thread and throws away the result.
231void wxThread::OnExit()
232{
233 Join();
234}
235
236// Global initialization
237class wxThreadModule : public wxModule {
238 DECLARE_DYNAMIC_CLASS(wxThreadModule)
239public:
ee4f8c2a 240 virtual bool OnInit() {
7c351dad
GL
241 wxThreadGuiInit();
242 p_mainid = (int)getpid();
243 wxMainMutex.Lock();
244 }
245
ee4f8c2a 246 virtual void OnExit() {
7c351dad
GL
247 wxMainMutex.Unlock();
248 wxThreadGuiExit();
249 }
250};
251
252IMPLEMENT_DYNAMIC_CLASS(wxThreadModule, wxModule)