| 20 | volatile int JASAudioThread::snIntCount; |
| 21 | |
| 22 | JASAudioThread::JASAudioThread(int prio, int msgCount, u32 stackSize) : JKRThread(JASDram, stackSize, msgCount, prio), JASGlobalInstance<JASAudioThread>(true) { |
| 23 | sbPauseFlag = false; |
| 24 | OSInitThreadQueue(&sThreadQueue); |
| 25 | } |
| 26 | |
| 27 | void JASAudioThread::create(s32 prio) { |
| 28 | #line 42 |
nothing calls this directly
no test coverage detected