gelf_getshdr - Man Page

retrieve a section header into a class-independent structure

Synopsis

#include <gelf.h>

GElf_Shdr *gelf_getshdr(Elf_Scn *scn, GElf_Shdr *dst);

Description

gelf_getshdr() retrieves the section header associated with the section descriptor scn, translating it into the class-independent GElf_Shdr representation. The header is copied into the structure referenced by dst.

Parameters

scn

Pointer to a section descriptor of type Elf_Scn.

dst

Pointer to a caller-provided GElf_Shdr structure to receive the section header.

Return Value

On success, gelf_getshdr() stores the section header in dst and returns dst. On failure, NULL is returned and elf_errno is set.  If scn is NULL then NULL is returned without setting elf_errno.

See Also

elf32_getshdr(3), elf64_getshdr(3), gelf_update_shdr(3), libelf(3), elf(5)

Attributes

InterfaceAttributeValue
gelf_getshdr()Thread safetyMT-Safe

Reporting Bugs

Report bugs to <elfutils-devel@sourceware.org> or https://sourceware.org/bugzilla/.

Referenced By

gelf_update_shdr(3).

2025-09-22 Libelf Programmer's Manual