UML Modelling and Codegeneration related discussions » Tool Usage and Handling » change memory allocation function for events
change memory allocation function for events
2140 Betrachtungen
Seite:
1
change memory allocation function for events
02.10.2008 10:48
Using a WST environment Rhapsody generates the following code for events:
evStop * RiC_Create_evStop( void )
{
evStop* me = RIC_MEMORY_ALLOCATOR_GET(evStop);
if(me!=NULL)
{
evStop_Init(me);
}
return me;
}
We want to use malloc, how can we achieve this??
Re: change memory allocation function for events
02.10.2008 10:50
Hi,
empty (not
