Switchtec Userspace  PROJECT_NUMBER = PROJECT_NUMBER=PROJECT_NUMBER = 2.2
portable.h
1 /*
2  * Microsemi Switchtec(tm) PCIe Management Library
3  * Copyright (c) 2017, Microsemi Corporation
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included
13  * in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
19  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
20  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
21  * OTHER DEALINGS IN THE SOFTWARE.
22  *
23  */
24 
25 #ifndef LIBSWITCHTEC_PORTABLE_H
26 #define LIBSWITCHTEC_PORTABLE_H
27 
28 #if (defined(_WIN16) || defined(_WIN32) || defined(_WIN64)) \
29  && !defined(__WINDOWS__)
30 # define __WINDOWS__
31 #endif
32 
33 #if defined(__linux__)
34 # include <linux/limits.h>
35 #elif defined(__WINDOWS__)
36 # include <winsock2.h>
37 # include <windows.h>
38 # ifndef PATH_MAX
39 # define PATH_MAX MAX_PATH
40 # endif
41 #endif
42 
43 #ifdef __WINDOWS__
44 #define FMT_SIZE_T_x "Ix"
45 #define FMT_llX "I64X"
46 #define FMT_lld "I64d"
47 #else
48 #define FMT_SIZE_T_x "zx"
49 #define FMT_llX "llX"
50 #define FMT_lld "lld"
51 #endif
52 
53 #ifdef __WINDOWS__
54 #ifndef MAP_FAILED
55 #define MAP_FAILED NULL
56 #endif
57 #endif
58 
59 #ifdef __WINDOWS__
60 #ifndef SIGBUS
61 #define SIGBUS SIGABRT
62 #endif
63 #endif
64 
65 #ifdef __MINGW32__
66 #define ffs __builtin_ffs
67 #endif
68 
69 #endif