003 File Manager
Current Path:
/usr/src/sys/contrib/openzfs/include/os/linux/spl/sys
usr
/
src
/
sys
/
contrib
/
openzfs
/
include
/
os
/
linux
/
spl
/
sys
/
📁
..
📄
Makefile.am
(799 B)
📄
acl.h
(4.14 KB)
📄
atomic.h
(3.3 KB)
📄
byteorder.h
(2.27 KB)
📄
callb.h
(1.72 KB)
📄
callo.h
(2.06 KB)
📄
cmn_err.h
(1.4 KB)
📄
condvar.h
(4.71 KB)
📄
console.h
(1.11 KB)
📄
cred.h
(2.09 KB)
📄
ctype.h
(1.07 KB)
📄
debug.h
(5.71 KB)
📄
disp.h
(1.19 KB)
📄
dkio.h
(1.38 KB)
📄
errno.h
(1.67 KB)
📄
fcntl.h
(1.13 KB)
📄
file.h
(2.09 KB)
📄
inttypes.h
(1.05 KB)
📄
isa_defs.h
(4.95 KB)
📄
kmem.h
(6.11 KB)
📄
kmem_cache.h
(8.58 KB)
📄
kstat.h
(7.47 KB)
📄
list.h
(5.12 KB)
📄
mod_os.h
(1.07 KB)
📄
mutex.h
(5.21 KB)
📄
param.h
(1.22 KB)
📄
proc.h
(1.31 KB)
📄
processor.h
(1.12 KB)
📄
procfs_list.h
(2.14 KB)
📄
random.h
(1.28 KB)
📄
rwlock.h
(4.68 KB)
📄
shrinker.h
(3.32 KB)
📄
sid.h
(1.62 KB)
📄
signal.h
(1.73 KB)
📄
simd.h
(1.1 KB)
📄
stat.h
(1.07 KB)
📄
strings.h
(1.13 KB)
📄
sunddi.h
(1.97 KB)
📄
sysmacros.h
(5.68 KB)
📄
systeminfo.h
(1.36 KB)
📄
taskq.h
(5.62 KB)
📄
thread.h
(2.31 KB)
📄
time.h
(3 KB)
📄
timer.h
(2.73 KB)
📄
trace.h
(5.88 KB)
📄
trace_spl.h
(966 B)
📄
trace_taskq.h
(2.42 KB)
📄
tsd.h
(1.44 KB)
📄
types.h
(1.66 KB)
📄
types32.h
(1.18 KB)
📄
uio.h
(4.31 KB)
📄
user.h
(1.47 KB)
📄
vfs.h
(1.48 KB)
📄
vmem.h
(4.17 KB)
📄
vmsystm.h
(2.32 KB)
📄
vnode.h
(3.25 KB)
📄
wait.h
(1.63 KB)
📄
zmod.h
(2.74 KB)
📄
zone.h
(1.2 KB)
Editing: tsd.h
/* * Copyright (C) 2010 Lawrence Livermore National Security, LLC. * Produced at Lawrence Livermore National Laboratory (cf, DISCLAIMER). * Written by Brian Behlendorf <behlendorf1@llnl.gov>. * UCRL-CODE-235197 * * This file is part of the SPL, Solaris Porting Layer. * * The SPL is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation; either version 2 of the License, or (at your * option) any later version. * * The SPL is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with the SPL. If not, see <http://www.gnu.org/licenses/>. */ #ifndef _SPL_TSD_H #define _SPL_TSD_H #include <sys/types.h> #define TSD_HASH_TABLE_BITS_DEFAULT 9 #define TSD_KEYS_MAX 32768 #define DTOR_PID (PID_MAX_LIMIT+1) #define PID_KEY (TSD_KEYS_MAX+1) typedef void (*dtor_func_t)(void *); extern int tsd_set(uint_t, void *); extern void *tsd_get(uint_t); extern void *tsd_get_by_thread(uint_t, kthread_t *); extern void tsd_create(uint_t *, dtor_func_t); extern void tsd_destroy(uint_t *); extern void tsd_exit(void); int spl_tsd_init(void); void spl_tsd_fini(void); #endif /* _SPL_TSD_H */
Upload File
Create Folder