5917 User-mode SMB server
[unleashed.git] / usr / src / lib / libfakekernel / common / kstat.c
blobed877fd6941a991fed36bf73f78eef8f46e41363
1 /*
2 * This file and its contents are supplied under the terms of the
3 * Common Development and Distribution License ("CDDL"), version 1.0.
4 * You may only use this file in accordance with the terms of version
5 * 1.0 of the CDDL.
7 * A full copy of the text of the CDDL should have accompanied this
8 * source. A copy of the CDDL is also available via the Internet at
9 * http://www.illumos.org/license/CDDL.
13 * Copyright 2013 Nexenta Systems, Inc. All rights reserved.
16 #include <sys/types.h>
17 #include <sys/kstat.h>
18 #include <sys/systm.h>
20 /*ARGSUSED*/
21 kstat_t *
22 kstat_create_zone(const char *ks_module, int ks_instance, const char *ks_name,
23 const char *ks_class, uchar_t ks_type, uint_t ks_ndata, uchar_t ks_flags,
24 zoneid_t ks_zoneid)
26 return (NULL);
29 /*ARGSUSED*/
30 kstat_t *
31 kstat_create(const char *ks_module, int ks_instance, const char *ks_name,
32 const char *ks_class, uchar_t ks_type, uint_t ks_ndata, uchar_t ks_flags)
34 return (NULL);
37 /*ARGSUSED*/
38 void
39 kstat_install(kstat_t *ksp)
42 /*ARGSUSED*/
43 void
44 kstat_delete(kstat_t *ksp)