1*587644a8SJustin T. Gibbs /* 2*587644a8SJustin T. Gibbs * CDDL HEADER START 3*587644a8SJustin T. Gibbs * 4*587644a8SJustin T. Gibbs * This file and its contents are supplied under the terms of the 5*587644a8SJustin T. Gibbs * Common Development and Distribution License ("CDDL"), version 1.0. 6*587644a8SJustin T. Gibbs * You may only use this file in accordance with the terms of version 7*587644a8SJustin T. Gibbs * 1.0 of the CDDL. 8*587644a8SJustin T. Gibbs * 9*587644a8SJustin T. Gibbs * A full copy of the text of the CDDL should have accompanied this 10*587644a8SJustin T. Gibbs * source. A copy of the CDDL is also available via the Internet at 11*587644a8SJustin T. Gibbs * http://www.illumos.org/license/CDDL. 12*587644a8SJustin T. Gibbs * 13*587644a8SJustin T. Gibbs * CDDL HEADER END 14*587644a8SJustin T. Gibbs */ 15*587644a8SJustin T. Gibbs /* 16*587644a8SJustin T. Gibbs * Copyright 2014 Spectra Logic Corporation. All rights reserved. 17*587644a8SJustin T. Gibbs */ 18*587644a8SJustin T. Gibbs 19*587644a8SJustin T. Gibbs #ifndef _SYS_ZFS_CONTEXT_H 20*587644a8SJustin T. Gibbs #define _SYS_ZFS_CONTEXT_H 21*587644a8SJustin T. Gibbs 22*587644a8SJustin T. Gibbs #ifdef __cplusplus 23*587644a8SJustin T. Gibbs extern "C" { 24*587644a8SJustin T. Gibbs #endif 25*587644a8SJustin T. Gibbs 26*587644a8SJustin T. Gibbs #include <sys/stat.h> 27*587644a8SJustin T. Gibbs #include <sys/taskq.h> 28*587644a8SJustin T. Gibbs #include <sys/taskq_impl.h> 29*587644a8SJustin T. Gibbs #include <sys/debug.h> 30*587644a8SJustin T. Gibbs #include <sys/list.h> 31*587644a8SJustin T. Gibbs #include <sys/zfs_debug.h> 32*587644a8SJustin T. Gibbs 33*587644a8SJustin T. Gibbs #ifdef __cplusplus 34*587644a8SJustin T. Gibbs } 35*587644a8SJustin T. Gibbs #endif 36*587644a8SJustin T. Gibbs 37*587644a8SJustin T. Gibbs #endif /* _SYS_ZFS_CONTEXT_H */ 38