ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/main_unix.cpp
(Generate patch)

Comparing BasiliskII/src/Unix/main_unix.cpp (file contents):
Revision 1.75 by gbeauche, 2006-04-19T06:55:54Z vs.
Revision 1.76 by gbeauche, 2006-05-08T16:56:07Z

# Line 89 | Line 89 | using std::string;
89   #include "rpc.h"
90  
91   #if USE_JIT
92 < extern void flush_icache_range(uint32 start, uint32 size); // from compemu_support.cpp
92 > extern void flush_icache_range(uint8 *start, uint32 size); // from compemu_support.cpp
93   #endif
94  
95   #ifdef ENABLE_MON
# Line 945 | Line 945 | void FlushCodeCache(void *start, uint32
945   {
946   #if USE_JIT
947      if (UseJIT)
948 <                flush_icache_range((uintptr)start, size);
948 >                flush_icache_range((uint8 *)start, size);
949   #endif
950   #if !EMULATED_68K && defined(__NetBSD__)
951          m68k_sync_icache(start, size);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines