Describe the solution you'd like
It should be a simple matter of adding a case in private VxSymbol getVxSymbolClass(int type) . Vxworks 5.3 has a slightly different struct SYMBOL from the other versions already supported.
Describe alternatives you've considered
I temporarily cannot test /implement this until I can run scripts (need to resolve unrelated issues)
Additional context
From symbol.h revision "02c,22sep92" , in a release tagged 5.3 (15mar96) :
typedef struct /* SYMBOL - entry in symbol table */
{
SL_NODE nameHNode; /* hash node (must come first) */
char *name; /* pointer to symbol name */
char *value; /* symbol value */
UINT16 group; /* symbol group */
SYM_TYPE type; /* symbol type */
} SYMBOL;
Describe the solution you'd like It should be a simple matter of adding a case in
private VxSymbol getVxSymbolClass(int type)
. Vxworks 5.3 has a slightly differentstruct SYMBOL
from the other versions already supported.Describe alternatives you've considered I temporarily cannot test /implement this until I can run scripts (need to resolve unrelated issues)
Additional context From
symbol.h
revision "02c,22sep92" , in a release tagged 5.3 (15mar96) :SYM_TYPE defaults to a signed char, int8