DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

elf_cntl(S-osr5)


elf_cntl -- control a file descriptor

Syntax

cc [flag . . . ] file . . . -lelf [library] . . .

#include <libelf.h>

int elf_cntl(Elf *elf, Elf_Cmd cmd);

Description

elf_cntl(S-osr5) instructs the library to modify its behavior with respect to an ELF descriptor, elf.

As elf_begin(S-osr5) describes, an ELF descriptor can have multiple activations. Also, multiple ELF descriptors may share a single file descriptor. Generally, elf_cntl( ) commands apply to all activations of elf. Moreover, if the ELF descriptor is associated with an archive file, descriptors for members within the archive are also affected as described below. Unless stated otherwise, operations on archive members do not affect the descriptor for the containing archive.

The argument cmd tells what actions to take and may have the following values.


ELF_C_FDDONE
This value tells the library not to use the file descriptor associated with elf. A program should use this command when it has requested all the information it cares to use and wishes to avoid the overhead of reading the rest of the file. The memory for all completed operations remains valid, but later file operations, such as the initial elf_getdata(S-osr5) for a section, will fail if the data is not in memory already.

ELF_C_FDREAD
This command is similar to ELF_C_FDDONE, except it forces the library to read the rest of the file. A program should use this command when it must close the file descriptor but has not yet read everything it needs from the file. After elf_cntl( ) completes the ELF_C_FDREAD command, future operations, such as elf_getdata( ), will use the memory version of the file without needing to use the file descriptor.

Return values

If elf_cntl( ) succeeds, it returns zero. Otherwise elf was null or an error occurred, and the function returns -1.

Diagnostics

Error conditions are identified through the routine elf_error(S-osr5).

Warning

If the program wishes to use the ``raw'' operations (see elf_rawdata(S-osr5) under elf_getdata( ) and elf_rawfile(S-osr5)), it must disable the file descriptor with ELF_C_FDDONE or ELF_C_FDREAD, and must execute the raw operations explicitly beforehand. Otherwise, the raw file operations will fail. Calling elf_rawfile( ) makes the entire image available, thus supporting subsequent calls to elf_rawdata(S-osr5).

See also

elf(S-osr5), elf_begin(S-osr5), elf_getdata(S-osr5), elf_rawdata(S-osr5), elf_rawfile(S-osr5)

Standards conformance

elf_cntl(S-osr5) is not part of any currently supported standard; it was developed by UNIX System Laboratories, Inc. and is maintained by The SCO Group.
© 2005 The SCO Group, Inc. All rights reserved.
SCO OpenServer Release 6.0.0 -- 02 June 2005