Changeset 103
- Timestamp:
- Oct 20, 2017, 6:27:13 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/k/kDefs.h
r100 r103 47 47 /** FreeBSD. */ 48 48 #define K_OS_FREEBSD 3 49 /** GNU/Hurd. */ 50 #define K_OS_GNU_HURD 4 49 51 /** GNU/kFreeBSD. */ 50 #define K_OS_GNU_KFBSD 452 #define K_OS_GNU_KFBSD 5 51 53 /** GNU/kNetBSD or GNU/NetBSD or whatever the decide to call it. */ 52 #define K_OS_GNU_KNBSD 554 #define K_OS_GNU_KNBSD 6 53 55 /** Linux. */ 54 #define K_OS_LINUX 656 #define K_OS_LINUX 7 55 57 /** NetBSD. */ 56 #define K_OS_NETBSD 758 #define K_OS_NETBSD 8 57 59 /** NT (native). */ 58 #define K_OS_NT 860 #define K_OS_NT 9 59 61 /** OpenBSD*/ 60 #define K_OS_OPENBSD 962 #define K_OS_OPENBSD 10 61 63 /** OS/2 */ 62 #define K_OS_OS2 1 064 #define K_OS_OS2 11 63 65 /** Solaris */ 64 #define K_OS_SOLARIS 1 166 #define K_OS_SOLARIS 12 65 67 /** Windows. */ 66 #define K_OS_WINDOWS 1 268 #define K_OS_WINDOWS 13 67 69 /** The max K_OS_* value (exclusive). */ 68 #define K_OS_MAX 1 370 #define K_OS_MAX 14 69 71 /** @} */ 70 72 … … 89 91 # elif defined(__FreeBSD_kernel__) 90 92 # define K_OS K_OS_GNU_KFBSD 93 # elif defined(__gnu_hurd__) 94 # define K_OS K_OS_GNU_HURD 91 95 # elif defined(__gnu_linux__) 92 96 # define K_OS K_OS_LINUX
Note:
See TracChangeset
for help on using the changeset viewer.