Message-Id: Date: Fri, 15 Mar 1996 15:19:05 +1200 From: Bill Currie To: djgpp-workers AT delorie DOT com Subject: Re: A separate section for locked memory? I just tried it with the folling source (C and C++, 2.6.3, beta3). Unfortunatly, the target does not support section attributes. I guess this means GCC will have to be reconfigured, but I don't have any idea how to go about doing this, let alone rebuilding GCC. With sufficient pointers, I'ld be willing to do this. int b __attribute__ ((section("locked1")))=0; int f(int fr) __attribute__ ((section("locked1"))); int f(int fr) { return fr; } Bill