Deleted Added
full compact
_types.h (137390) _types.h (143952)
1/*-
2 * Copyright (c) 2002 Mike Barcroft <mike@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2002 Mike Barcroft <mike@FreeBSD.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/sys/_types.h 137390 2004-11-08 18:05:43Z des $
26 * $FreeBSD: head/sys/sys/_types.h 143952 2005-03-22 01:19:18Z das $
27 */
28
29#ifndef _SYS__TYPES_H_
30#define _SYS__TYPES_H_
31
32#include <sys/cdefs.h>
33#include <machine/_types.h>
34
35/*
36 * Standard type definitions.
37 */
27 */
28
29#ifndef _SYS__TYPES_H_
30#define _SYS__TYPES_H_
31
32#include <sys/cdefs.h>
33#include <machine/_types.h>
34
35/*
36 * Standard type definitions.
37 */
38typedef __uint32_t __blksize_t; /* file block size */
39typedef __int64_t __blkcnt_t; /* file block count */
38typedef __int32_t __clockid_t; /* clock_gettime()... */
39typedef __uint32_t __fflags_t; /* file flags */
40typedef __uint64_t __fsblkcnt_t;
41typedef __uint64_t __fsfilcnt_t;
42typedef __uint32_t __gid_t;
43typedef __int64_t __id_t; /* can hold a gid_t, pid_t, or uid_t */
44typedef __uint32_t __ino_t; /* inode number */
45typedef long __key_t; /* IPC key (for Sys V IPC) */

--- 53 unchanged lines hidden ---
40typedef __int32_t __clockid_t; /* clock_gettime()... */
41typedef __uint32_t __fflags_t; /* file flags */
42typedef __uint64_t __fsblkcnt_t;
43typedef __uint64_t __fsfilcnt_t;
44typedef __uint32_t __gid_t;
45typedef __int64_t __id_t; /* can hold a gid_t, pid_t, or uid_t */
46typedef __uint32_t __ino_t; /* inode number */
47typedef long __key_t; /* IPC key (for Sys V IPC) */

--- 53 unchanged lines hidden ---