* Posix/SGI/No threads added

* Updated configure.in file (Threads and Joystick detection)


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@89 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Guilhem Lavaux
1998-06-13 17:02:45 +00:00
parent d3c2365922
commit 7c351dad14
13 changed files with 1864 additions and 142 deletions

216
src/gtk1/threadsgi.cpp Normal file
View File

@@ -0,0 +1,216 @@
/////////////////////////////////////////////////////////////////////////////
// Name: threadsgi.cpp
// Purpose: wxThread (SGI) Implementation
// Author: Original from Wolfram Gloger/Guilhem Lavaux
// Modified by:
// Created: 04/22/98
// RCS-ID: $Id$
// Copyright: (c) Wolfram Gloger (1996, 1997); Guilhem Lavaux (1998)
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifdef __GNUG__
#pragma implementation "thread.h"
#endif
#include <stdio.h>
#include <unistd.h>
#include <signal.h>
#include <sys/wait.h>
#include <sys/prctl.h>
enum thread_state {
STATE_IDLE = 0,
STATE_RUNNING,
STATE_CANCELED,
STATE_EXITED
};
/////////////////////////////////////////////////////////////////////////////
// Static variables
/////////////////////////////////////////////////////////////////////////////
static int p_mainid;
wxMutex wxMainMutex;
#include "threadgui.inc"
/////////////////////////////////////////////////////////////////////////////
// Unix implementations (SGI threads)
/////////////////////////////////////////////////////////////////////////////
class wxMutexInternal {
public:
abilock_t p_mutex;
};
wxMutex::wxMutex()
{
p_internal = new wxMutexInternal;
init_lock(&(p_internal->p_mutex));
}
wxMutex::~wxMutex()
{
}
wxMutex::MutexError wxMutex::Lock(void)
{
spin_lock(&(p_internal->p_mutex));
return NO_ERROR;
}
wxMutex::MutexError wxMutex::TryLock(void)
{
if (acquire_lock(&(p_internal->p_mutex)) != 0)
return BUSY;
return NO_ERROR;
}
wxMutex::MutexError wxMutex::Unlock(void)
{
release_lock(&(p_internal->p_mutex));
return NO_ERROR;
}
// GLH: Don't now how it works on SGI. Wolfram ?
wxCondition::wxCondition(void) {}
wxCondition::~wxCondition(void) {}
int wxCondition::Wait(wxMutex& WXUNUSED(mutex)) { return 0;}
int wxCondition::Wait(wxMutex& WXUNUSED(mutex), unsigned long WXUNUSED(sec),
unsigned long WXUNUSED(nsec)) { return 0; }
int wxCondition::Signal(void) { return 0; }
int wxCondition::Broadcast(void) { return 0; }
class
wxThreadPrivate {
public:
wxThreadPrivate() { thread_id = 0; state = STATE_IDLE; }
~wxThreadPrivate() {}
static void SprocStart(void *ptr);
static void SignalHandler(int sig);
public:
int state, thread_id;
void* exit_status;
};
void wxThreadPrivate::SprocStart(void *ptr)
{
void* status;
wxThread *thr = (wxThread *)ptr;
thr->p_internal->thread_id = getpid();
thr->p_internal->exit_status = 0;
status = thr->Entry();
thr->Exit(status);
}
void wxThread::Exit(void* status)
{
wxThread* ptr = this;
THREAD_SEND_EXIT_MSG(ptr);
p_internal->state = STATE_EXITED;
p_internal->exit_status = status;
_exit(0);
}
wxThread::ThreadError wxThread::Create()
{
if (p_internal->state != STATE_IDLE)
return RUNNING;
p_internal->state = STATE_RUNNING;
if (sproc(p_internal->SprocStart, PR_SALL, this) < 0) {
p_internal->state = STATE_IDLE;
return NO_RESOURCE;
}
return NO_ERROR;
}
void wxThread::Destroy()
{
if (p_internal->state == STATE_RUNNING)
p_internal->state = STATE_CANCELED;
}
void *wxThread::Join()
{
if (p_internal->state != STATE_IDLE) {
bool do_unlock = wxThread::IsMain();
int stat;
if (do_unlock)
wxMainMutex.Unlock();
waitpid(p_internal->thread_id, &stat, 0);
if (do_unlock)
wxMainMutex.Lock();
if (!WIFEXITED(stat) && !WIFSIGNALED(stat))
return 0;
p_internal->state = STATE_IDLE;
return p_internal->exit_status;
}
return 0;
}
unsigned long wxThread::GetID()
{
return (unsigned long)p_internal->thread_id;
}
void wxThread::TestDestroy()
{
if (p_internal->state == STATE_CANCELED) {
p_internal->exit_status = 0;
_exit(0);
}
}
void wxThread::SetPriority(int prio)
{
}
int wxThread::GetPriority(void)
{
}
bool wxThreadIsMain()
{
return (int)getpid() == main_id;
}
wxThread::wxThread()
{
p_internal = new wxThreadPrivate();
}
wxThread::~wxThread()
{
Cancel();
Join();
delete p_internal;
}
// The default callback just joins the thread and throws away the result.
void wxThread::OnExit()
{
Join();
}
// Global initialization
class wxThreadModule : public wxModule {
DECLARE_DYNAMIC_CLASS(wxThreadModule)
public:
virtual bool OnInit(void) {
wxThreadGuiInit();
p_mainid = (int)getpid();
wxMainMutex.Lock();
}
virtual void OnExit(void) {
wxMainMutex.Unlock();
wxThreadGuiExit();
}
};
IMPLEMENT_DYNAMIC_CLASS(wxThreadModule, wxModule)