7.7.8.99. GEL_SymbolHideSection()ΒΆ

Hides a section of symbols.

Syntax

GEL_SymbolHideSection( "fileName", "sectionName", ["cpuName"], ["boardName"] );

Parameters

fileName: names the symbol file containing the symbol information. The fileName must be enclosed in quotation marks. The symbol file can be a standard COFF output file (*.out) or a specific symbol file obtained during the build process.

sectionName: names the section to remove. The sectionName must be enclosed in quotation marks.

cpuName (optional): names the CPU on which to load the symbolic information (useful in a multiprocessor environment). The cpuName must be enclosed in quotation marks.

boardName (optional): names the board on which to load the symbolic information. If not specified, uses the board name of the processor on which this GEL function is executed. The boardName must be enclosed in quotation marks.

Description

A section of symbols can be hidden. The symbols are still loaded but cannot be seen by the debugger. To show them again you must use GEL_SymbolShowSection().

Synchronous

Synchronous from GEL: No

Completely synchronous: No

Example

GEL_SymbolHideSection( "C:\\mydir\\myfile.out", ".text", "Cortex_M4_0",
"Texas Instruments XDS110 USB Debug Probe_0" );

Related Topics

GEL_Load

GEL_SymbolAdd

GEL_SymbolAddRel

GEL_SymbolAddRel

GEL_SymbolLoad

GEL_SymbolLoadRel

GEL_SymbolRemove

GEL_SymbolShowSection

GEL_UnloadAllSymbols