mirror of
https://github.com/ish-app/ish.git
synced 2026-05-28 21:10:35 +00:00
18 lines
264 B
C
18 lines
264 B
C
#ifndef __UNICORN_UNICORN_H
|
|
#define __UNICORN_UNICORN_H
|
|
#if __KERNEL__
|
|
#include <linux/types.h>
|
|
#else
|
|
#include <stdbool.h>
|
|
#endif
|
|
|
|
struct emu_uc {
|
|
struct uc_struct *uc;
|
|
unsigned long tls_ptr;
|
|
unsigned long mm_flush_count;
|
|
};
|
|
|
|
extern bool unicorn_trace;
|
|
|
|
#endif
|