ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/BeOS/sysdeps.h
(Generate patch)

Comparing BasiliskII/src/BeOS/sysdeps.h (file contents):
Revision 1.11 by cebix, 2001-02-09T20:04:15Z vs.
Revision 1.16 by cebix, 2002-01-15T14:58:35Z

# Line 1 | Line 1
1   /*
2   *  sysdeps.h - System dependent definitions for BeOS
3   *
4 < *  Basilisk II (C) 1997-2001 Christian Bauer
4 > *  Basilisk II (C) 1997-2002 Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 21 | Line 21
21   #ifndef SYSDEPS_H
22   #define SYSDEPS_H
23  
24 + #ifdef __POWERPC__
25 + #define NO_STD_NAMESPACE
26 + #endif
27 +
28   #include <assert.h>
29   #include <support/SupportDefs.h>
30   #include <support/ByteOrder.h>
# Line 45 | Line 49
49   // ExtFS is supported
50   #define SUPPORTS_EXTFS 1
51  
52 + // BSD socket API is supported
53 + #define SUPPORTS_UDP_TUNNEL 1
54 +
55   // mon is not supported
56   #undef ENABLE_MON
57  
58   // Time data type for Time Manager emulation
59   typedef bigtime_t tm_time_t;
60  
54 // Offset Mac->BeOS time in seconds
55 #define TIME_OFFSET 0x7c25b080
56
61   // 64 bit file offsets
62   typedef off_t loff_t;
63  
64 + // Networking types
65 + #define PF_INET AF_INET
66 + typedef int socklen_t;
67 +
68   // UAE CPU data types
69   #define uae_s8 int8
70   #define uae_u8 uint8
# Line 69 | Line 77 | typedef off_t loff_t;
77   typedef uae_u32 uaecptr;
78   #define VAL64(a) (a ## LL)
79   #define UVAL64(a) (a ## uLL)
80 + typedef uint32 uintptr;
81 + typedef int32 intptr;
82  
83   // UAE CPU defines
84   #ifdef __i386__
# Line 118 | Line 128 | static inline void do_put_mem_word(uae_u
128   #define call_mem_put_func(func, addr, v) ((*func)(addr, v))
129   #define __inline__ inline
130   #define CPU_EMU_SIZE 0
121 #undef USE_MAPPED_MEMORY
122 #undef CAN_MAP_MEMORY
131   #undef NO_INLINE_MEMORY_ACCESS
132   #undef MD_HAVE_MEM_1_FUNCS
133   #undef USE_COMPILER

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines