logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

elf32_getphdr, elf64_getphdr - retrieve the program header table for a 32-bit or 64-bit ELF object file

Attributes

For an explanation of the terms used in this section, see attributes(7). ┌─────────────────────────────────────────────────────────────────────────────┬───────────────┬─────────┐ │ InterfaceAttributeValue │ ├─────────────────────────────────────────────────────────────────────────────┼───────────────┼─────────┤ │ elf32_getphdr(), elf64_getphdr() │ Thread safety │ MT-Safe │ └─────────────────────────────────────────────────────────────────────────────┴───────────────┴─────────┘

Description

Retrieve the program header table for the given ELF descriptor elf. The number of elements in the program header table can be retrieved with elf32_getphdrnum and elf64_getphdrnum. elf32_newphdr and elf64_newphdr change the size of the program header table or to delete it. If changing an element of the program header table, you must call elf_flagphdr with ELF_C_SET and ELF_F_DIRTY in order to write the new data to disk.

Name

elf32_getphdr, elf64_getphdr - retrieve the program header table for a 32-bit or 64-bit ELF object file

Parameters

elf ELF descriptor from which to retrieve the program header table.

Reporting Bugs

Report bugs to <elfutils-devel@sourceware.org> or https://sourceware.org/bugzilla/. Libelf 2024-08-14 ELF32_GETPHDR(3)

Return Value

On success, return a pointer to the program header table. Return NULL if there is no program header. On failure, return NULL and set a libelf error code.

See Also

elf32_newphdr(3), elf_errno(3), elf_getphdrnum(3), libelf(3), elf(5)

Synopsis

#include<libelf.h>Elf32_Phdr*elf32_getphdr(Elf*elf);Elf64_Phdr*elf64_getphdr(Elf*elf);

See Also