Re: [uClinux-dev] [PATCH] add Blackfin to the README

2010-01-21 Thread Greg Ungerer
Hi Mike, On 01/19/2010 10:12 AM, Mike Frysinger wrote: Signed-off-by: Mike Frysingervap...@gentoo.org Applied. Thanks Greg Greg Ungerer -- Principal EngineerEMAIL: g...@snapgear.com SnapGear Group,

Re: [uClinux-dev] Disk Cache overlaying Shared Memory?

2010-01-21 Thread John B Moore
After more detail examination of this problem, what I see is that the storage for the shared memory appears to be allocated via RAMFS in the pagecache in tiny-shmem.c (i.e. a non-mmu platform) and the storage is mmapped when the shmat is performed. When the pagecache hits its threshold of low

[uClinux-dev] [PATCH] debug: add a gcc-2 compat tweak

2010-01-21 Thread Mike Frysinger
GCC-2.x has a bug with empty arg expansion in macros. Signed-off-by: Mike Frysinger vap...@gentoo.org --- stubs.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/stubs.h b/stubs.h index 7e5308d..615cab5 100644 --- a/stubs.h +++ b/stubs.h @@ -41,7 +41,7 @@ #define

Re: [uClinux-dev] [PATCH] debug: add a gcc-2 compat tweak

2010-01-21 Thread Jamie Lokier
Mike Frysinger wrote: GCC-2.x has a bug with empty arg expansion in macros. if (lvl = DEBUG) { \ - fprintf(stderr, %s:%i: fmt, __func__, __LINE__, ## args); \ + fprintf(stderr, %s:%i: fmt, __func__, __LINE__ , ## args); \

Re: [uClinux-dev] [PATCH] debug: add a gcc-2 compat tweak

2010-01-21 Thread David McCullough
Jivin Mike Frysinger lays it down ... GCC-2.x has a bug with empty arg expansion in macros. Applied with updated comment. At first I wondered which uClinux stubs.h you were patching ;-) Cheers, Davidm Signed-off-by: Mike Frysinger vap...@gentoo.org --- stubs.h |2 +- 1 files

Re: [uClinux-dev] [PATCH] debug: add a gcc-2 compat tweak

2010-01-21 Thread Mike Frysinger
On Thursday 21 January 2010 20:21:31 Jamie Lokier wrote: Mike Frysinger wrote: GCC-2.x has a bug with empty arg expansion in macros. - fprintf(stderr, %s:%i: fmt, __func__, __LINE__, ## args); \ + fprintf(stderr, %s:%i: fmt, __func__, __LINE__ , ## args); \ Assuming it's what it