46 |
|
#include <stdlib.h> |
47 |
|
#include <string.h> |
48 |
|
|
49 |
+ |
#ifdef HAVE_PTHREADS |
50 |
+ |
# include <pthread.h> |
51 |
+ |
#endif |
52 |
+ |
|
53 |
|
#ifdef HAVE_FCNTL_H |
54 |
|
# include <fcntl.h> |
55 |
|
#endif |
75 |
|
# define REAL_ADDRESSING 0 |
76 |
|
#endif |
77 |
|
|
74 |
– |
/* Linear address translation (i.e. just an offset between Emulator & host) */ |
75 |
– |
#ifndef DIRECT_ADDRESSING |
76 |
– |
# ifdef MAC_OS_X_VERSION_10_2 |
77 |
– |
/* For some reason, compiling on 10.2 with DIRECT_ADDRESSING enabled gives an */ |
78 |
– |
/* app that never writes to its screen! (i.e. it never calls most of video.cpp) */ |
79 |
– |
# define DIRECT_ADDRESSING 0 |
80 |
– |
# else |
81 |
– |
# define DIRECT_ADDRESSING 1 |
82 |
– |
# endif |
83 |
– |
#endif |
84 |
– |
|
78 |
|
/* Using 68k emulator */ |
79 |
|
#define EMULATED_68K 1 |
80 |
|
|
89 |
|
# define ROM_IS_WRITE_PROTECTED 1 |
90 |
|
#endif |
91 |
|
|
92 |
+ |
/* Direct Addressing requires Video on SEGV signals */ |
93 |
+ |
#if DIRECT_ADDRESSING && !ENABLE_VOSF |
94 |
+ |
# undef ENABLE_VOSF |
95 |
+ |
# define ENABLE_VOSF 1 |
96 |
+ |
#endif |
97 |
|
|
98 |
|
/* ExtFS is supported */ |
99 |
|
#define SUPPORTS_EXTFS 1 |
100 |
|
|
101 |
+ |
/* BSD socket API supported */ |
102 |
+ |
#define SUPPORTS_UDP_TUNNEL 1 |
103 |
|
|
104 |
|
/* Data types */ |
105 |
|
typedef unsigned char uint8; |
146 |
|
#endif |
147 |
|
|
148 |
|
#ifndef HAVE_LOFF_T |
149 |
< |
typedef off_t loff_t; |
149 |
> |
typedef off_t loff_t; |
150 |
> |
#endif |
151 |
> |
#ifndef HAVE_CADDR_T |
152 |
> |
typedef char * caddr_t; |
153 |
|
#endif |
154 |
|
|
155 |
|
/* Time data type for Time Manager emulation */ |
159 |
|
typedef struct timeval tm_time_t; |
160 |
|
#endif |
161 |
|
|
162 |
< |
/* Offset Mac->Unix time in seconds */ |
163 |
< |
#define TIME_OFFSET 0x7c25b080 |
162 |
> |
/* Define codes for all the float formats that we know of. |
163 |
> |
* Though we only handle IEEE format. */ |
164 |
> |
#define UNKNOWN_FLOAT_FORMAT 0 |
165 |
> |
#define IEEE_FLOAT_FORMAT 1 |
166 |
> |
#define VAX_FLOAT_FORMAT 2 |
167 |
> |
#define IBM_FLOAT_FORMAT 3 |
168 |
> |
#define C4X_FLOAT_FORMAT 4 |
169 |
|
|
170 |
|
/* UAE CPU data types */ |
171 |
|
#define uae_s8 int8 |
187 |
|
extern uint64 GetTicks_usec(void); |
188 |
|
extern void Delay_usec(uint32 usec); |
189 |
|
|
190 |
+ |
#ifdef HAVE_PTHREADS |
191 |
+ |
/* Centralized pthread attribute setup */ |
192 |
+ |
void Set_pthread_attr(pthread_attr_t *attr, int priority); |
193 |
+ |
#endif |
194 |
+ |
|
195 |
|
/* UAE CPU defines */ |
196 |
|
#ifdef WORDS_BIGENDIAN |
197 |
|
|
302 |
|
#define ENUMDECL typedef enum |
303 |
|
#define ENUMNAME(name) name |
304 |
|
#define write_log printf |
292 |
– |
#undef USE_MAPPED_MEMORY |
293 |
– |
#undef CAN_MAP_MEMORY |
305 |
|
|
306 |
|
#if defined(X86_ASSEMBLY) || defined(X86_64_ASSEMBLY) |
307 |
|
#define ASM_SYM_FOR_FUNC(a) __asm__(a) |