Commit 76d3c0cf authored by Kevin Modzelewski's avatar Kevin Modzelewski

Merge pull request #92 from vinzenz/build-fixes

Build fix
parents ddabda9a 716de3f5
...@@ -150,7 +150,7 @@ static void _thread_context_dump(int signum, siginfo_t* info, void* _context) { ...@@ -150,7 +150,7 @@ static void _thread_context_dump(int signum, siginfo_t* info, void* _context) {
if (VERBOSITY() >= 2) { if (VERBOSITY() >= 2) {
printf("in thread_context_dump, tid=%d\n", tid); printf("in thread_context_dump, tid=%d\n", tid);
printf("%p %p %p\n", context, &context, context->uc_mcontext.fpregs); printf("%p %p %p\n", context, &context, context->uc_mcontext.fpregs);
printf("old rip: 0x%lx\n", context->uc_mcontext.gregs[REG_RIP]); printf("old rip: 0x%llx\n", context->uc_mcontext.gregs[REG_RIP]);
} }
pushThreadState(tid, context); pushThreadState(tid, context);
......
...@@ -215,7 +215,8 @@ public: ...@@ -215,7 +215,8 @@ public:
typedef std::vector<CompiledFunction*> FunctionList; typedef std::vector<CompiledFunction*> FunctionList;
class CallRewriteArgs; class CallRewriteArgs;
struct CLFunction { class CLFunction {
public:
int num_args; int num_args;
int num_defaults; int num_defaults;
bool takes_varargs, takes_kwargs; bool takes_varargs, takes_kwargs;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment