Justin,

Below is the current version of the page I plan to include in 2.34.
Any comments?

(At the moment, I removed mention of field reordering, and
I've commented out the NOTE section, since it seems to me
a detail that is probably not needed, and anyway, most systems
I know of do things a bit differently from what you describe.)

Cheers,

Michael

.\" Copyright (C) 2006 Justin Pryzby <[EMAIL PROTECTED]>
.\"     and Copyright (C) 2006 Michael Kerrisk <[EMAIL PROTECTED]>
.\"
.\" Permission is hereby granted, free of charge, to any person obtaining
.\" a copy of this software and associated documentation files (the
.\" "Software"), to deal in the Software without restriction, including
.\" without limitation the rights to use, copy, modify, merge, publish,
.\" distribute, sublicense, and/or sell copies of the Software, and to
.\" permit persons to whom the Software is furnished to do so, subject to
.\" the following conditions:
.\"
.\" The above copyright notice and this permission notice shall be
.\" included in all copies or substantial portions of the Software.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
.\" EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
.\" MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
.\" IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
.\" CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
.\" TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
.\" SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
.\"
.\" References:
.\"   /usr/lib/gcc/i486-linux-gnu/4.1.1/include/stddef.h
.\"   glibc-doc
.TH OFFSETOF 3 "2006-05-23" GNU "Linux Programmer's Manual"
.SH NAME
offsetof \- offset of a structure member
.SH SYNOPSIS
\fB#include <stddef.h>

\fBsize_t offsetof(\fItype\fP, \fPmember\fP);
.SH DESCRIPTION
The macro \fBoffsetof\fP() returns the offset of the field
\fImember\fP from the start of the structure \fItype\fP.

This macro is useful because the sizes of the fields that compose
a structure can vary across implementations,
and compilers may insert different numbers of padding
bytes between fields.
Consequently, an element's offset is not necessarily
given by the sum of the sizes of the previous elements.

A compiler error will result if
\fImember\fP is not aligned to a byte boundary
(i.e., it is a bit field).
.SH "RETURN VALUE"
\fBoffsetof\fP() returns the offset of the given element within the
given type, in units of bytes.
.SH EXAMPLE
On a Linux/x86 system, when compiled using the default \fBgcc\fP(1)
options, the program below produces the following output:
.fi

    $ ./a.out
    offsets: i=0; c=4; d=8 a=16
    sizeof(struct s)=16

.nf
.nf
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>

int main()
{
    struct s {
        int i;
        char c;
        double d;
        char a[];
    };

    /* Output is compiler dependent */

    printf("offsets: i=%ld; c=%ld; d=%ld a=%ld\\n",
            (long) offsetof(struct s, i),
            (long) offsetof(struct s, c),
            (long) offsetof(struct s, d),
            (long) offsetof(struct s, a));
    printf("sizeof(struct s)=%ld\\n", (long) sizeof(struct s));

    exit(EXIT_SUCCESS);
}
.fi
.\" .SH NOTES
.\" \fBoffsetof\fP can be implemented as:
.\" .sp
.\" .nf
.\"        \fB#define offsetof(\fItype\fP, \fPmember\fP) \\
.\"            \fB&((type *)0)->\fImember\fP - (char *)((\fPtype\fP *)0)
.\" .fi
.SH "CONFORMING TO"
POSIX.1-2001.
.\" .SH SEE ALSO
.\" FIXME . When one day readdir_r(3) is documented, it should have
.\" a SEE ALSO that refers to this page.

-- 
Michael Kerrisk
maintainer of Linux man pages Sections 2, 3, 4, 5, and 7 

Want to help with man page maintenance?  
Grab the latest tarball at
ftp://ftp.win.tue.nl/pub/linux-local/manpages/, 
read the HOWTOHELP file and grep the source 
files for 'FIXME'.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to