| |||||
Technical Support Support Resources
Product Information | C251: INDIRECT FUNCTION CALLSInformation in this article applies to:
QUESTIONI'm using C251 Version 2 and need help with function pointers and reentrancy. ANSWERC251 Version 2 introduces a new compiler directive FUNCTIONS. This directive specifies whether functions pass parameters in fixed memory locations (like previous versions) or whether parameters are passed on the stack (like most C compilers where stack space is not an issue). To pass parameters on the stack, compile your code as follows: C251 mycode.c FUNCTIONS(REENTRANT) When compiled this way, you have no limitations with regards to function pointers, indirect function calls, and reentrancy. Last Reviewed: Sunday, January 30, 2005 | ||||
| |||||