ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/SheepShaver/src/BeOS/sysdeps.h
Revision: 1.5
Committed: 2004-05-15T16:36:42Z (20 years, 6 months ago) by gbeauche
Content type: text/plain
Branch: MAIN
Changes since 1.4: +3 -0 lines
Log Message:
"idlewait" support for Linux and NewWorld ROMs

File Contents

# User Rev Content
1 cebix 1.1 /*
2     * sysdeps.h - System dependent definitions for BeOS
3     *
4 cebix 1.4 * SheepShaver (C) 1997-2004 Christian Bauer and Marc Hellwig
5 cebix 1.1 *
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
8     * the Free Software Foundation; either version 2 of the License, or
9     * (at your option) any later version.
10     *
11     * This program is distributed in the hope that it will be useful,
12     * but WITHOUT ANY WARRANTY; without even the implied warranty of
13     * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14     * GNU General Public License for more details.
15     *
16     * You should have received a copy of the GNU General Public License
17     * along with this program; if not, write to the Free Software
18     * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19     */
20    
21     #ifndef SYSDEPS_H
22     #define SYSDEPS_H
23    
24 cebix 1.2 // Do we have std namespace?
25     #ifdef __POWERPC__
26     #define NO_STD_NAMESPACE
27     #endif
28    
29 cebix 1.1 #include <assert.h>
30     #include <sys/types.h>
31     #include <KernelKit.h>
32    
33     #include "user_strings_beos.h"
34    
35     // Are we using a PPC emulator or the real thing?
36     #ifdef __POWERPC__
37     #define EMULATED_PPC 0
38 gbeauche 1.3 #define WORDS_BIGENDIAN 1
39 cebix 1.1 #else
40     #define EMULATED_PPC 1
41 gbeauche 1.3 #undef WORDS_BIGENDIAN
42 cebix 1.1 #endif
43    
44     #define POWERPC_ROM 1
45    
46     // Time data type for Time Manager emulation
47     typedef bigtime_t tm_time_t;
48    
49     // 64 bit file offsets
50     typedef off_t loff_t;
51 cebix 1.2
52     // Data types
53     typedef uint32 uintptr;
54     typedef int32 intptr;
55 cebix 1.1
56 gbeauche 1.5 // Timing functions
57     extern void Delay_usec(uint32 usec);
58    
59 cebix 1.1 // Macro for calling MacOS routines
60     #define CallMacOS(type, proc) (*(type)proc)()
61     #define CallMacOS1(type, proc, arg1) (*(type)proc)(arg1)
62     #define CallMacOS2(type, proc, arg1, arg2) (*(type)proc)(arg1, arg2)
63     #define CallMacOS3(type, proc, arg1, arg2, arg3) (*(type)proc)(arg1, arg2, arg3)
64     #define CallMacOS4(type, proc, arg1, arg2, arg3, arg4) (*(type)proc)(arg1, arg2, arg3, arg4)
65     #define CallMacOS5(type, proc, arg1, arg2, arg3, arg4, arg5) (*(type)proc)(arg1, arg2, arg3, arg4, arg5)
66     #define CallMacOS6(type, proc, arg1, arg2, arg3, arg4, arg5, arg6) (*(type)proc)(arg1, arg2, arg3, arg4, arg5, arg6)
67     #define CallMacOS7(type, proc, arg1, arg2, arg3, arg4, arg5, arg6, arg7) (*(type)proc)(arg1, arg2, arg3, arg4, arg5, arg6, arg7)
68    
69     #endif