Displaying 2 results from an estimated 2 matches for "fezin".
2013 May 27
2
Stack Overflow
...RAYS, I get this error " declarations may not appear after an executable statement in the block". Is there any changes need to be done in stack_alloc.h ? Have you guys faced same trouble or any fix is already done on this issue?
My platform is TI C6424, CCS and windows.
--
Best Regards
Fezin E T
Senior Engineer - Systems Business Unit | Design And Development
TATA ELXSI
Technopark Campus Trivandrum 695 581 India
Tel +91 471 666 1117
www.tataelxsi.com<http://www.tataelxsi.com/>
Notice: The information contained in this e-mail message and/or attachments to it may contain confident...
2013 May 27
0
Stack Overflow
Did you try replacing the create() with separate malloc() and init()
steps. If so, which of the two was causing the problems?
BTW, you need a C99 compiler for VAR_ARRAYS to work, although you may be
able to use USE_ALLOCA.
Jean-Marc
On 05/27/2013 08:36 AM, Fezin E T wrote:
> Guys,
>
> Program stack is getting overflowed when I create and destroy encoder
> instance continuously for around 30 times. How can I ensure stack is
> completely freed when I destroy the encoder instance? I tried with
> VAR_ARRAYS. But Its giving me errors while I...