24 lines
599 B
C
24 lines
599 B
C
|
#ifndef __DBGCHECK_H__
|
||
|
#define __DBGCHECK_H__
|
||
|
|
||
|
#include <stdbool.h>
|
||
|
|
||
|
#ifdef DEBUG
|
||
|
#ifndef SIMULATOR
|
||
|
/* check whether a function is inside the valid memory location */
|
||
|
#define IS_FUNCPTR(fp) ({/
|
||
|
extern char _text[];/
|
||
|
extern char _etext[];/
|
||
|
((((char *)(fp)) >= _text) && (((char *)(fp)) < _etext)/
|
||
|
})
|
||
|
#else
|
||
|
/* check whether a function is inside the valid memory location */
|
||
|
#define IS_FUNCPTR(fp) (((char*)(fp)) != NULL)
|
||
|
#endif
|
||
|
#else
|
||
|
/* check whether a function is inside the valid memory location */
|
||
|
#define IS_FUNCPRT (fp) true
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif // #ifndef __DBGCHECK_H__
|