some backend fixes
svn-id: r8812
This commit is contained in:
parent
36bf6e09d3
commit
9875983336
3 changed files with 6 additions and 6 deletions
|
@ -562,7 +562,7 @@ void OSystem_PALMOS::set_timer(int timer, int (*callback)(int))
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Mutex handling */
|
/* Mutex handling */
|
||||||
MutexRef OSystem_PALMOS::create_mutex()
|
OSystem::MutexRef OSystem_PALMOS::create_mutex()
|
||||||
{
|
{
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
|
@ -316,7 +316,7 @@ void OSystem_MorphOS::create_thread(ThreadProc *proc, void *param)
|
||||||
NP_PPC_Arg1, (ULONG) param, TAG_DONE);
|
NP_PPC_Arg1, (ULONG) param, TAG_DONE);
|
||||||
}
|
}
|
||||||
|
|
||||||
MutexRef OSystem_MorphOS::create_mutex()
|
OSystem::MutexRef OSystem_MorphOS::create_mutex()
|
||||||
{
|
{
|
||||||
SignalSemaphore *sem = (SignalSemaphore *) AllocVec(sizeof (SignalSemaphore), MEMF_PUBLIC);
|
SignalSemaphore *sem = (SignalSemaphore *) AllocVec(sizeof (SignalSemaphore), MEMF_PUBLIC);
|
||||||
|
|
||||||
|
|
|
@ -1744,7 +1744,7 @@ void OSystem_WINCE3::update_cdrom() {;}
|
||||||
//void ScummDebugger::attach(Scumm *s) {;}
|
//void ScummDebugger::attach(Scumm *s) {;}
|
||||||
|
|
||||||
/* Mutex stuff */
|
/* Mutex stuff */
|
||||||
MutexRefOSystem_WINCE3::create_mutex() {
|
OSystem::MutexRef OSystem_WINCE3::create_mutex() {
|
||||||
return (MutexRef)CreateMutex(NULL, FALSE, NULL);
|
return (MutexRef)CreateMutex(NULL, FALSE, NULL);
|
||||||
}
|
}
|
||||||
void OSystem_WINCE3::lock_mutex(MutexRef handle) {
|
void OSystem_WINCE3::lock_mutex(MutexRef handle) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue