search for: 14dbef3

Displaying 4 results from an estimated 4 matches for "14dbef3".

Did you mean: 14d2ef0
2011 Jun 03
1
[PATCH] JOBS: fix klibc DEBUG compilation
...ax at stro.at> --- the last open error, looks more like a klibc bug to me, will fix it there: show.c:(.text+0x36): undefined reference to `freopen' src/show.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/show.c b/src/show.c index 14dbef3..b4160e1 100644 --- a/src/show.c +++ b/src/show.c @@ -394,7 +394,9 @@ opentrace(void) if ((flags = fcntl(fileno(tracefile), F_GETFL, 0)) >= 0) fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND); #endif +#ifndef SMALL setlinebuf(tracefile); +#endif /* SMALL */ fputs("\nTracing sta...
2011 Jun 04
1
[PATCH] [SHELL] Fix klibc DEBUG compilation v2
...' show.c:(.text+0x86): undefined reference to `setlinebuf' Skip setlinebuf and use fclose/fopen inside SMALL. Signed-off-by: maximilian attems <max at stro.at> --- src/show.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/show.c b/src/show.c index 14dbef3..81e54ac 100644 --- a/src/show.c +++ b/src/show.c @@ -378,7 +378,11 @@ opentrace(void) scopy("./trace", s); #endif /* not_this_way */ if (tracefile) { +#ifndef SMALL if (!freopen(s, "a", tracefile)) { +#else + if (!(!fclose(tracefile) && (tracefile = fopen(s, &q...
2011 Jul 08
1
[PATCH] [SHELL] Fix klibc DEBUG compilation v3
...ip setlinebuf and use fclose/fopen inside __KLIBC__ Compile tested with debug in klibc and against glibc in dash repo. Signed-off-by: maximilian attems <max at stro.at> --- src/show.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/src/show.c b/src/show.c index 14dbef3..4a049e9 100644 --- a/src/show.c +++ b/src/show.c @@ -378,7 +378,11 @@ opentrace(void) scopy("./trace", s); #endif /* not_this_way */ if (tracefile) { +#ifndef __KLIBC__ if (!freopen(s, "a", tracefile)) { +#else + if (!(!fclose(tracefile) && (tracefile = fopen(s...
2012 Jul 02
0
[klibc:master] [SHELL] Fix klibc DEBUG compilation
...ximilian attems <max at stro.at> Signed-off-by: Herbert Xu <herbert at gondor.apana.org.au> Signed-off-by: maximilian attems <max at stro.at> --- usr/dash/show.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/usr/dash/show.c b/usr/dash/show.c index 14dbef3..4a049e9 100644 --- a/usr/dash/show.c +++ b/usr/dash/show.c @@ -378,7 +378,11 @@ opentrace(void) scopy("./trace", s); #endif /* not_this_way */ if (tracefile) { +#ifndef __KLIBC__ if (!freopen(s, "a", tracefile)) { +#else + if (!(!fclose(tracefile) && (tracefile...