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: trace_zfs.h
/* Here to keep the libspl build happy */ #ifndef _LIBSPL_ZFS_TRACE_H #define _LIBSPL_ZFS_TRACE_H /* * The set-error SDT probe is extra static, in that we declare its fake * function literally, rather than with the DTRACE_PROBE1() macro. This is * necessary so that SET_ERROR() can evaluate to a value, which wouldn't * be possible if it required multiple statements (to declare the function * and then call it). * * SET_ERROR() uses the comma operator so that it can be used without much * additional code. For example, "return (EINVAL);" becomes * "return (SET_ERROR(EINVAL));". Note that the argument will be evaluated * twice, so it should not have side effects (e.g. something like: * "return (SET_ERROR(log_error(EINVAL, info)));" would log the error twice). */ #undef SET_ERROR #define SET_ERROR(err) \ (__set_error(__FILE__, __func__, __LINE__, err), err) #endif
Upload File
Create Folder