src/version.h.in

Fri, 18 Apr 2014 01:26:01 -0600

author
andrew@localhost
date
Fri, 18 Apr 2014 01:26:01 -0600
changeset 150
c19afa2c81db
parent 14
7a98c853715e
permissions
-rw-r--r--

treat all DMA reads/writes as kernel mode (previously it would depend on whether the processor happens to be in user mode or kernel mode when the DMA completes, which is totally incorrect); handle 32-bit accesses that straddle page boundaries properly (all 32-bit accesses are now split into two 16-bit accesses); allow reads to the entire zero page, rather than just address 0

     1 #define VER_COMPILE_DATETIME	"@@datetime@@"
     2 #define VER_COMPILE_DATE		"@@date@@"
     3 #define VER_COMPILE_TIME		"@@time@@"
     4 #define VER_COMPILE_BY			"@@whoami@@"
     5 #define VER_COMPILE_HOST		"@@hostname@@"
     6 #define VER_COMPILER			"@@compiler@@"
     7 #define VER_BUILD_TYPE			"@@buildtype@@"
     8 #define VER_CFLAGS				"@@cflags@@"
    10 #define VER_MAJOR				@@majorver@@
    11 #define VER_MINOR				@@minorver@@
    12 #define VER_BUILDNUM			@@buildnum@@
    13 #define VER_EXTRA				"@@extraver@@"
    14 #define VER_VCSREV				"@@vcsstr@@"
    16 #define VER_FULLSTR				"@@fullverstr@@"