2001-04-10 06:20:02 +04:00
|
|
|
// Copyright (C) 2001 MandrakeSoft S.A.
|
2001-04-10 06:02:05 +04:00
|
|
|
//
|
|
|
|
// MandrakeSoft S.A.
|
|
|
|
// 43, rue d'Aboukir
|
|
|
|
// 75002 Paris - France
|
|
|
|
// http://www.linux-mandrake.com/
|
|
|
|
// http://www.mandrakesoft.com/
|
|
|
|
//
|
|
|
|
// This library is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
|
|
// License as published by the Free Software Foundation; either
|
|
|
|
// version 2 of the License, or (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This library is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
// Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
|
|
// License along with this library; if not, write to the Free Software
|
|
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
|
2001-04-10 05:51:16 +04:00
|
|
|
//
|
|
|
|
// osdep.h
|
2001-04-10 06:02:05 +04:00
|
|
|
//
|
|
|
|
// requires Bit32u/Bit64u from config.h, size_t from stdio.h
|
2001-04-10 05:51:16 +04:00
|
|
|
//
|
2001-04-10 06:02:05 +04:00
|
|
|
// Operating system dependent includes and defines for Bochs. These
|
|
|
|
// declarations can be included by C or C++., but they require definition of
|
|
|
|
// size_t beforehand. This makes it difficult to place them into either
|
|
|
|
// config.h or bochs.h. If in config.h, size_t is not always available yet.
|
|
|
|
// If in bochs.h, they can't be included by C programs so they lose.
|
2001-04-10 05:51:16 +04:00
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef BX_OSDEP_H
|
|
|
|
#define BX_OSDEP_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
2001-06-22 17:35:48 +04:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Hacks for win32, but exclude MINGW32 because it doesn't need them.
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
#ifdef WIN32
|
|
|
|
#ifndef __MINGW32__
|
|
|
|
// always return regular file.
|
|
|
|
# define S_ISREG(st_mode) 1
|
|
|
|
# define S_ISCHR(st_mode) 0
|
|
|
|
|
|
|
|
// VCPP includes also are missing these
|
|
|
|
# define off_t long
|
|
|
|
# define ssize_t int
|
|
|
|
|
|
|
|
// win32 has snprintf though with different name.
|
|
|
|
#define snprintf _snprintf
|
|
|
|
#endif /* ifnndef __MINGW32__ */
|
|
|
|
#endif /* WIN32 */
|
|
|
|
|
2001-04-10 06:02:05 +04:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Missing library functions.
|
|
|
|
// These should work on any platform that needs them.
|
|
|
|
//
|
|
|
|
// A missing library function is renamed to a bx_* function, so that when
|
|
|
|
// debugging and linking there's no confusion over which version is used.
|
|
|
|
// Because of renaming, the bx_* replacement functions can be tested on
|
|
|
|
// machines which have the real library function without duplicate symbols.
|
|
|
|
//
|
|
|
|
// If you're considering implementing a missing library function, note
|
|
|
|
// that it might be cleaner to conditionally disable the function call!
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
2001-04-10 05:51:16 +04:00
|
|
|
|
2001-06-22 17:35:48 +04:00
|
|
|
|
2001-04-10 06:02:05 +04:00
|
|
|
#if !BX_HAVE_SNPRINTF
|
|
|
|
#define snprintf bx_snprintf
|
2001-04-10 05:51:16 +04:00
|
|
|
extern int bx_snprintf (char *s, size_t maxlen, const char *format, ...);
|
|
|
|
#endif
|
|
|
|
|
2001-05-17 11:00:42 +04:00
|
|
|
#if BX_HAVE_STRTOULL
|
|
|
|
// great, just use the usual function
|
|
|
|
#elif BX_HAVE_STRTOUQ
|
|
|
|
// they have strtouq and not strtoull
|
|
|
|
#define strtoull strtouq
|
|
|
|
#else
|
|
|
|
#define strtoull bx_strtoull
|
2001-04-10 06:02:05 +04:00
|
|
|
extern Bit64u bx_strtoull (const char *nptr, char **endptr, int baseignore);
|
|
|
|
#endif
|
2001-04-10 05:51:16 +04:00
|
|
|
|
2001-04-10 06:02:05 +04:00
|
|
|
#if !BX_HAVE_STRDUP
|
|
|
|
#define strdup bx_strdup
|
|
|
|
extern char *bx_strdup(const char *str);
|
2001-04-10 05:51:16 +04:00
|
|
|
#endif
|
|
|
|
|
2001-04-10 06:02:05 +04:00
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// Missing library functions, implemented for MacOS only
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#if BX_WITH_MACOS
|
|
|
|
// fd_read and fd_write are called by floppy.cc to access the Mac
|
|
|
|
// floppy drive directly, since the MacOS doesn't have "special"
|
|
|
|
// pathnames which map directly to IO devices
|
2001-04-10 05:51:16 +04:00
|
|
|
|
2001-04-10 06:02:05 +04:00
|
|
|
int fd_read(char *buffer, Bit32u offset, Bit32u bytes);
|
|
|
|
int fd_write(char *buffer, Bit32u offset, Bit32u bytes);
|
|
|
|
int fd_stat(struct stat *buf);
|
|
|
|
#endif
|
2001-04-10 05:51:16 +04:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif /* __cplusplus */
|
|
|
|
|
|
|
|
#endif /* ifdef BX_OSDEP_H */
|