Как узнать точную функцию?
Существует несколько распространенных способов:
addr2line -fe /lib/libc.so.6 0x28980 0x1ac46
или
gdb -q /lib/libc.so.6
(gdb) x/i 0x28980 # will show which function you are in, and the actual instruction
# You may need to examine a few instructions before to make sense of it:
(gdb) x/20i 0x28980-35
(gdb) info symbol 0x1ac46 # ~equivalent to addr2line