mirror of
https://github.com/wiiu-env/wut.git
synced 2024-12-13 11:12:37 +01:00
ac8a42fa7c
Assuming that --enable-threads=dkp gets merged into devkitPPC r31... :)
25 lines
704 B
C++
25 lines
704 B
C++
#include "wut_gthread.h"
|
|
|
|
int
|
|
__wut_once(__wut_once_t *once,
|
|
void (*func) (void))
|
|
{
|
|
uint32_t value = 0;
|
|
|
|
if (OSCompareAndSwapAtomicEx(once,
|
|
__WUT_ONCE_VALUE_INIT,
|
|
__WUT_ONCE_VALUE_STARTED,
|
|
&value)) {
|
|
func();
|
|
OSCompareAndSwapAtomic(once,
|
|
__WUT_ONCE_VALUE_STARTED,
|
|
__WUT_ONCE_VALUE_DONE);
|
|
} else if (value != __WUT_ONCE_VALUE_DONE) {
|
|
while (!OSCompareAndSwapAtomic(once,
|
|
__WUT_ONCE_VALUE_DONE,
|
|
__WUT_ONCE_VALUE_DONE));
|
|
}
|
|
|
|
return 0;
|
|
}
|