Initial Linux ZFS GIT Repo
[zfs.git] / zfs / lib / libsolcompat / include / sys / types.h
1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or http://www.opensolaris.org/os/licensing.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 /*
23  * Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
24  * Use is subject to license terms.
25  */
26
27 #ifndef _SOL_SYS_TYPES_H
28 #define _SOL_SYS_TYPES_H
29
30 #include <sys/isa_defs.h>
31 #include <sys/feature_tests.h>
32 #include_next <sys/types.h>
33 #include <sys/param.h> /* for NBBY */
34 #include <sys/types32.h>
35
36 typedef longlong_t offset_t;
37 typedef u_longlong_t u_offset_t;
38 typedef u_longlong_t len_t;
39 typedef longlong_t diskaddr_t;
40
41 typedef short pri_t;
42
43 typedef int zoneid_t;
44 typedef int projid_t;
45
46 typedef int major_t;
47 typedef int minor_t;
48
49 typedef ushort_t o_mode_t; /* old file attribute type */
50
51 /*
52  * Definitions remaining from previous partial support for 64-bit file
53  * offsets.  This partial support for devices greater than 2gb requires
54  * compiler support for long long.
55  */
56 #ifdef _LONG_LONG_LTOH
57 typedef union {
58         offset_t _f;    /* Full 64 bit offset value */
59         struct {
60                 int32_t _l; /* lower 32 bits of offset value */
61                 int32_t _u; /* upper 32 bits of offset value */
62         } _p;
63 } lloff_t;
64 #endif
65
66 #ifdef _LONG_LONG_HTOL
67 typedef union {
68         offset_t _f;    /* Full 64 bit offset value */
69         struct {
70                 int32_t _u; /* upper 32 bits of offset value */
71                 int32_t _l; /* lower 32 bits of offset value */
72         } _p;
73 } lloff_t;
74 #endif
75
76 #include <sys/time.h>
77
78 #endif