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.
   6  *
   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.
  10  */
  11 
  12 /*
  13  * Copyright 2013 Nexenta Systems, Inc.  All rights reserved.
  14  */
  15 
  16 #include <sys/types.h>
  17 #include <sys/kstat.h>
  18 #include <sys/systm.h>
  19 
  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)
  25 {
  26         return (NULL);
  27 }
  28 
  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)
  33 {
  34         return (NULL);
  35 }
  36 
  37 /*ARGSUSED*/
  38 void
  39 kstat_install(kstat_t *ksp)
  40 {}
  41 
  42 /*ARGSUSED*/
  43 void
  44 kstat_delete(kstat_t *ksp)
  45 {}