003 File Manager
Current Path:
/usr/src/sys/contrib/openzfs/lib/libspl/include/sys
usr
/
src
/
sys
/
contrib
/
openzfs
/
lib
/
libspl
/
include
/
sys
/
📁
..
📄
Makefile.am
(593 B)
📄
acl.h
(10.09 KB)
📄
acl_impl.h
(1.51 KB)
📄
callb.h
(999 B)
📄
cmn_err.h
(1017 B)
📄
cred.h
(1.02 KB)
📄
debug.h
(1.19 KB)
📄
dkio.h
(14.38 KB)
📄
dklabel.h
(8.35 KB)
📁
dktp
📄
feature_tests.h
(1.04 KB)
📄
int_limits.h
(1023 B)
📄
int_types.h
(1.01 KB)
📄
inttypes.h
(1.03 KB)
📄
isa_defs.h
(5.09 KB)
📄
kmem.h
(1.25 KB)
📄
kstat.h
(29.01 KB)
📄
list.h
(1.8 KB)
📄
list_impl.h
(1.25 KB)
📄
mhd.h
(4.03 KB)
📄
mkdev.h
(1013 B)
📄
policy.h
(936 B)
📄
poll.h
(1.49 KB)
📄
priv.h
(1011 B)
📄
processor.h
(1.05 KB)
📄
sha2.h
(4.57 KB)
📄
simd.h
(11.04 KB)
📄
stack.h
(1.78 KB)
📄
stdtypes.h
(1.53 KB)
📄
strings.h
(1.03 KB)
📄
stropts.h
(1023 B)
📄
sunddi.h
(970 B)
📄
systeminfo.h
(1.25 KB)
📄
time.h
(2.34 KB)
📄
trace_spl.h
(891 B)
📄
trace_zfs.h
(891 B)
📄
types.h
(2.05 KB)
📄
types32.h
(2.24 KB)
📄
tzfile.h
(4.55 KB)
📄
uio.h
(2.95 KB)
📄
va_list.h
(1 KB)
📄
varargs.h
(1017 B)
📄
vnode.h
(1.01 KB)
📄
vtoc.h
(11.65 KB)
📄
zone.h
(1011 B)
Editing: types.h
/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License, Version 1.0 only * (the "License"). You may not use this file except in compliance * with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. * See the License for the specific language governing permissions * and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at usr/src/OPENSOLARIS.LICENSE. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright 2007 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ #ifndef _LIBSPL_SYS_TYPES_H #define _LIBSPL_SYS_TYPES_H #if defined(HAVE_MAKEDEV_IN_SYSMACROS) #include <sys/sysmacros.h> #elif defined(HAVE_MAKEDEV_IN_MKDEV) #include <sys/mkdev.h> #endif #include <sys/isa_defs.h> #include <sys/feature_tests.h> #include_next <sys/types.h> #include <sys/types32.h> #include <sys/va_list.h> #include <sys/stdtypes.h> #ifndef HAVE_INTTYPES #include <inttypes.h> #endif /* HAVE_INTTYPES */ typedef int zoneid_t; typedef int projid_t; /* * Definitions remaining from previous partial support for 64-bit file * offsets. This partial support for devices greater than 2gb requires * compiler support for long long. */ #ifdef _LONG_LONG_LTOH typedef union { offset_t _f; /* Full 64 bit offset value */ struct { int32_t _l; /* lower 32 bits of offset value */ int32_t _u; /* upper 32 bits of offset value */ } _p; } lloff_t; #endif #ifdef _LONG_LONG_HTOL typedef union { offset_t _f; /* Full 64 bit offset value */ struct { int32_t _u; /* upper 32 bits of offset value */ int32_t _l; /* lower 32 bits of offset value */ } _p; } lloff_t; #endif #include <sys/param.h> /* for NBBY */ #endif
Upload File
Create Folder