This is the mail archive of the ecos-discuss@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: forwarded message from Simpkins, Andy


>>>>> Jesper Skov writes:

>> void flash_query(void* data) __attribute__ ((section 
>> (".2ram.flash_query")));
>> 

> this always gives a compiler error : 

>  parse error before `{'

> when I have the following function

> void flash_query(void* data) __attribute__ ((section (".2ram.flash_query")))
> {
> 	// do something
> }

The attribute has to come before the function name, right. This 
should work:

void __attribute__ ((section (".2ram.flash_query"))) flash_query(void* data) 
{
	// do something
}

--Mark


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]