From eb6c4594e1831daeddc469ed69c4dee917e627c1 Mon Sep 17 00:00:00 2001 From: ptitSeb Date: Tue, 2 Mar 2021 15:18:23 +0100 Subject: Added basic thread infrastructure --- src/include/threads.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100755 src/include/threads.h (limited to 'src/include/threads.h') diff --git a/src/include/threads.h b/src/include/threads.h new file mode 100755 index 00000000..fa9d64ab --- /dev/null +++ b/src/include/threads.h @@ -0,0 +1,23 @@ +#ifndef _THREADS_H_ +#define _THREADS_H_ + +typedef struct box64context_s box64context_t; +typedef struct x64emu_s x64emu_t; + +typedef struct emu_jmpbuf_s { + x64emu_t* emu; + void* jmpbuf; + int jmpbuf_ok; +} emu_jmpbuf_t; + +void CleanStackSize(box64context_t* context); + +emu_jmpbuf_t* GetJmpBuf(); + +void init_pthread_helper(); +void fini_pthread_helper(box64context_t* context); + +// prepare an "emuthread structure" in pet and return address of function pointer for a "thread creation routine" +void* my_prepare_thread(x64emu_t *emu, void* f, void* arg, int ssize, void** pet); + +#endif //_THREADS_H_ \ No newline at end of file -- cgit 1.4.1