mirror of
https://github.com/akuker/RASCSI.git
synced 2024-12-27 16:31:36 +00:00
159 lines
3.3 KiB
C
159 lines
3.3 KiB
C
//---------------------------------------------------------------------------
|
|
//
|
|
// SCSI Target Emulator RaSCSI (*^..^*)
|
|
// for Raspberry Pi
|
|
//
|
|
// Powered by XM6 TypeG Technology.
|
|
// Copyright (C) 2016-2020 GIMONS
|
|
// Copyright (C) 2020 akuker
|
|
//
|
|
// Imported NetBSD support and some optimisation patch by Rin Okuyama.
|
|
//
|
|
// [ OS related definitions ]
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#if !defined(os_h)
|
|
#define os_h
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// #define
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
#ifndef _LARGEFILE64_SOURCE
|
|
#define _LARGEFILE64_SOURCE
|
|
#endif
|
|
|
|
#ifndef _FILE_OFFSET_BITS
|
|
#define _FILE_OFFSET_BITS 64
|
|
#endif
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// #include
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
#include <assert.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
#include <time.h>
|
|
#include <utime.h>
|
|
#include <fcntl.h>
|
|
#include <signal.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <sched.h>
|
|
#include <pthread.h>
|
|
#include <iconv.h>
|
|
#include <libgen.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/time.h>
|
|
|
|
#ifndef BAREMETAL
|
|
#include <poll.h>
|
|
#include <dirent.h>
|
|
#include <sys/mman.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/socket.h>
|
|
#include <sys/epoll.h>
|
|
#include <netinet/in.h>
|
|
#include <linux/gpio.h>
|
|
#else
|
|
#include <machine/endian.h>
|
|
#define htonl(_x) __htonl(_x)
|
|
#define htons(_x) __htons(_x)
|
|
#define ntohl(_x) __ntohl(_x)
|
|
#define ntohs(_x) __ntohs(_x)
|
|
#endif // BAREMETAL
|
|
|
|
#if defined(__linux__)
|
|
#include <linux/if.h>
|
|
#include <linux/if_tun.h>
|
|
#elif defined(__NetBSD__)
|
|
#include <sys/param.h>
|
|
#include <sys/sysctl.h>
|
|
#include <net/if.h>
|
|
#include <net/if_dl.h>
|
|
#include <net/if_tap.h>
|
|
#include <ifaddrs.h>
|
|
#endif
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// Basic Macros
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
#undef FASTCALL
|
|
#define FASTCALL
|
|
|
|
#undef CDECL
|
|
#define CDECL
|
|
|
|
#undef INLINE
|
|
#define INLINE
|
|
|
|
#if !defined(ASSERT)
|
|
#if !defined(NDEBUG)
|
|
#define ASSERT(cond) assert(cond)
|
|
#else
|
|
#define ASSERT(cond) ((void)0)
|
|
#endif // NDEBUG
|
|
#endif // ASSERT
|
|
|
|
#if !defined(ASSERT_DIAG)
|
|
#if !defined(NDEBUG)
|
|
#define ASSERT_DIAG() AssertDiag()
|
|
#else
|
|
#define ASSERT_DIAG() ((void)0)
|
|
#endif // NDEBUG
|
|
#endif // ASSERT_DIAG
|
|
|
|
#define ARRAY_SIZE(x) (sizeof(x)/(sizeof(x[0])))
|
|
|
|
//---------------------------------------------------------------------------
|
|
//
|
|
// Basic Type Definitions
|
|
//
|
|
//---------------------------------------------------------------------------
|
|
typedef unsigned char BYTE;
|
|
typedef unsigned short WORD;
|
|
typedef unsigned long DWORD;
|
|
typedef unsigned long long QWORD;
|
|
typedef int BOOL;
|
|
typedef char TCHAR;
|
|
typedef char *LPTSTR;
|
|
typedef const char *LPCTSTR;
|
|
typedef const char *LPCSTR;
|
|
|
|
#if !defined(FALSE)
|
|
#define FALSE 0
|
|
#endif
|
|
|
|
#if !defined(TRUE)
|
|
#define TRUE 1
|
|
#endif
|
|
|
|
#if !defined(_T)
|
|
#define _T(x) x
|
|
#endif
|
|
|
|
#define _MAX_PATH 260
|
|
#define _MAX_DRIVE 3
|
|
#define _MAX_DIR 256
|
|
#define _MAX_FNAME 256
|
|
#define _MAX_EXT 256
|
|
|
|
#define off64_t off_t
|
|
|
|
#define xstrcasecmp strcasecmp
|
|
#define xstrncasecmp strncasecmp
|
|
|
|
#endif // os_h
|