search for: debug_ok

Displaying 2 results from an estimated 2 matches for "debug_ok".

Did you mean: debug_on
2012 Jul 05
1
[GIT-PULL] Elflink fixes
...60295 100644 --- a/com32/lib/vdprintf.c +++ b/com32/lib/vdprintf.c @@ -45,14 +45,13 @@ static void debug_putc(char c) void vdprintf(const char *format, va_list ap) { - int rv, _rv; + int rv; char buffer[BUFFER_SIZE]; char *p; static bool debug_init = false; static bool debug_ok = false; - _rv = rv = vsnprintf(buffer, BUFFER_SIZE, format, ap); - + rv = vsnprintf(buffer, BUFFER_SIZE, format, ap); if (rv < 0) return; diff --git a/core/Makefile b/core/Makefile index 3147566..a01d83a 100644 --- a/core/Makefile +++ b/core/Makefile @@ -62,7 +62,7 @@ NASMOPT...
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing