Hallo, dies ist ein Test.
PWD: /www/data-lst1/unixsoft/unixsoft/kaempfer/.public_html
Running in File Mode
Relative path: ./../../../../../../usr/man/man3elf/elf32_getchdr.3elf
Real path: /usr/share/man/man3elf/elf32_getchdr.3elf
Zurück
'\" te .\" Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. .TH elf32_getchdr 3ELF "10 December 2015" "Oracle Solaris 11.4" "ELF Library Functions" .SH NAME elf32_getchdr, elf64_getchdr \- retrieve class-dependent compression header .SH SYNOPSIS .LP .nf cc [ \fIflag\fR ... ] \fIfile\fR ... \fB-lelf\fR [ \fIlibrary\fR ... ] #include <libelf.h> \fBElf32_Chdr *\fR\fBelf32_getchdr\fR(\fBElf_Scn *\fR\fIscn\fR); .fi .LP .nf \fBElf64_Chdr *\fR\fBelf64_getchdr\fR(\fBElf_Scn *\fR\fIscn\fR); .fi .SH DESCRIPTION .sp .LP For a compressed section in a 32-bit class file, \fBelf32_getchdr()\fR returns a pointer to a compression header for the section descriptor \fIscn\fR. Otherwise, the file is not a 32-bit class file, the section is not compressed, \fIscn\fR was \fINULL\fR, or an error occurred; \fBelf32_getchdr()\fR then returns \fINULL\fR. .sp .LP The \fBelf32_getchdr\fR header includes the following members: .sp .in +2 .nf Elf32_Word ch_type; Elf32_Word ch_size; Elf32_Word ch_addralign; .fi .in -2 .sp .sp .LP while the \fBelf64_getchdr\fR header includes the following members: .sp .in +2 .nf Elf64_Word ch_type; Elf64_Xword ch_size; Elf64_Xword ch_addralign; .fi .in -2 .sp .sp .LP For the 64-bit class, replace 32 with 64 as appropriate. .SH NOTES .sp .LP \fBelf32_chdr()\fR and \fBelf64_chdr()\fR understand the standard \fBELF\fR compression format, indicated by the presence of the \fBSHF_COMPRESSED\fR section header flag. These routines are unable to process sections formatted in the original \fBGNU\fR compression format. The original \fBGNU\fR compression format is deprecated. See \fBelf_compress_gnu\fR(3ELF). .SH ATTRIBUTES .sp .LP See \fBattributes\fR(7) for descriptions of the following attributes: .sp .TS tab( ) box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPE ATTRIBUTE VALUE _ Interface Stability Committed _ MT-Level MT-Safe .TE .sp .SH SEE ALSO .sp .LP \fBelf\fR(3ELF), \fBelf_compress\fR(3ELF), \fBelf_compress_gnu\fR(3ELF), \fBlibelf\fR(3LIB), \fBattributes\fR(7)