Skip to content
This repository has been archived by the owner on Nov 5, 2019. It is now read-only.

Commit

Permalink
cpu-exec.c: patch from Stefan to fix _WIN64
Browse files Browse the repository at this point in the history
  • Loading branch information
ilg-ul committed Aug 5, 2015
1 parent eaa658a commit 26407db
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions cpu-exec.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,15 @@
#include "exec/memory-internal.h"
#include "qemu/rcu.h"

#if defined(CONFIG_GNU_ARM_ECLIPSE)
#if defined(_WIN64)
#ifdef sigsetjmp
#undef sigsetjmp
#endif
#define sigsetjmp(env, savesigs) _setjmp(env, NULL)
#endif
#endif

/* -icount align implementation. */

typedef struct SyncClocks {
Expand Down

0 comments on commit 26407db

Please sign in to comment.