[klibc] [klibc 28/43] mips support for klibc

Ralf Baechle ralf at linux-mips.org
Mon Jun 26 16:03:45 PDT 2006


On Sun, Jun 25, 2006 at 05:58:05PM -0700, H. Peter Anvin wrote:

> +typedef struct flock {
> +	short	l_type;
> +	short	l_whence;
> +	loff_t	l_start;
> +	loff_t	l_len;
> +	pid_t	l_pid;
> +} flock_t;

32-bit MIPS uses this:

struct flock {
        short   l_type;
        short   l_whence;
        off_t   l_start;
        off_t   l_len;
        long    l_sysid;
        __kernel_pid_t l_pid;
        long    pad[4];
};



More information about the klibc mailing list