Top "Symbol-table" questions

A `symbol table` is a data structure that maps each identifier in a program's source code to information relating to its declaration or appearance in the source.

How to call exported kernel module functions from another module?

I'm writing an API as a kernel module that provides device drivers with various functions. I wrote three functions in …

c module kernel symbol-table
gdb no symbol table loaded for core file

There was a core dump produced at the customer end for my application and while looking at the backtrace I …

gdb symbol-table
Symbol Table in Python

How can we see the Symbol-Table of a python source code? I mean, Python makes a symbol table for each …

python symbol-table
symbol lookup error: ./executableName: undefined symbol: _ZN18QXmlDefaultHandlerC2Ev

I am trying to run an executable on Linux Mint 16 x64 that was compiled for Ubuntu 12 x64. The executable uses …

linux qt linker shared-libraries symbol-table
symbol table and relocation table in object file

From what I understand, instructions and data in an object file all have addresses. First data item start at address 0 …

assembly compilation object-files symbol-table
How are variable names stored in memory in C?

In C, let's say you have a variable called variable_name. Let's say it's located at 0xaaaaaaaa, and at that …

c variables memory symbol-table
Print the symbol table of an ELF file

I have a program which uses the mmap system call: map_start = mmap(0, fd_stat.st_size, PROT_READ | PROT_…

c elf mmap symbol-table
A Symbol Table in C

I am currently developing a kind of static analysis tool that performs pattern matching. I am using Flex to generate …

c linux symbol-table
How to interpret the dynamic symbol table in an ELF executable?

I was looking at interpreting the dynamic symbol table (.dynsym) of an ELF executable file. I could successfully interpret the …

dynamic elf symbol-table