mirror of https://github.com/mgba-emu/mgba.git
15 lines
226 B
C
15 lines
226 B
C
|
#ifndef GBA_THREAD_H
|
||
|
#define GBA_THREAD_H
|
||
|
|
||
|
#include <pthread.h>
|
||
|
|
||
|
struct GBAThread {
|
||
|
struct GBA* gba;
|
||
|
struct ARMDebugger* debugger;
|
||
|
int fd;
|
||
|
};
|
||
|
|
||
|
int GBAThreadStart(struct GBAThread* threadContext, pthread_t* thread);
|
||
|
|
||
|
#endif
|