- Jun 09, 2013
-
-
Guy Zana authored
the conf-logger_debug option control whether tprintf_d (verbose debug logging) is enabled at all, if it is set to 0 then tprintf_d is implemented as do{}while(0)
-
- Apr 24, 2013
-
-
Avi Kivity authored
This allocator works by giving each allocation its own virtual address range which is not reused for later allocations. After a free(), the range is made inaccessible, forever, so use-after-free will result in a page fault. Sub-page overruns are also detected by filling unallocated space with a pattern, and checking whether the pattern has been altered during free().
-
- Mar 19, 2013
-
-
Avi Kivity authored
Now that the context switch code is red zone safe, allow the compiler to use it.
-
Avi Kivity authored
Causes an early failure for some reason. Disable until root cause is found.
-
Avi Kivity authored
-
Avi Kivity authored
-
- Mar 03, 2013
-
-
Avi Kivity authored
'make conf-preempt=0' -> 'g++ ... -DCONF_preempt=0' Use #if, not #ifdef in sources to reduce errors due to misspellings.
-
Avi Kivity authored
Easier to manage different configurations this way.
-