File: elf_cntl.3

package info (click to toggle)
elfutils 0.194-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 28,848 kB
  • sloc: ansic: 115,014; sh: 35,537; cpp: 4,998; makefile: 1,986; yacc: 1,388; lex: 130; asm: 77; sed: 39; awk: 35
file content (70 lines) | stat: -rw-r--r-- 1,602 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
.TH ELF_CNTL 3 2025-06-17 "Libelf" "Libelf Programmer's Manual"

.SH NAME
elf_cntl \- perform control operations on an ELF descriptor

.SH SYNOPSIS
.nf
#include <libelf.h>

int elf_cntl(Elf *elf, Elf_Cmd cmd);
.fi
.SH DESCRIPTION
Perform control operations on the ELF descriptor
.I elf
according to the operation specified by
.IR cmd .

The following commands are supported:

.TP
.B ELF_C_FDDONE
This command tells
.B libelf
that the application is done using the file descriptor associated with the
.I elf
object. The file descriptor may then be closed immediately without affecting the
in-memory ELF data.  Unless all data has been read from the file descriptor (see
.B ELF_C_FDREAD
below) future operation on the Elf descriptor may fail.

.TP
.B ELF_C_FDREAD
This command causes
.B libelf
to read the entire contents of the underlying file into memory immediately.
.B libelf
generally reads and parses elements of ELF files only when they are required.
This command instead triggers
.B libelf
to read all elements immediately. Using this command ensures that
.B ELF_C_FDDONE
may be used without causing future operations on the Elf descriptor to fail.

.SH RETURN VALUE
On success, returns 0.

On failure, it returns \-1 and sets an error that can be retrieved with
.BR elf_errmsg (3).


.SH SEE ALSO
.BR libelf (3),
.BR elf_errmsg (3),
.BR elf (5)

.SH ATTRIBUTES
.TS
allbox;
lbx lb lb
l l l.
Interface       Attribute       Value
T{
.na
.nh
.BR elf_cntl ()
T}      Thread safety   MT-Safe
.TE

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