mdb: build all parts of kmdb as c99
[unleashed.git] / kernel / zmod / zmod_subr.c
blob000925753fd7d413668cb7605179e044a80ae2b3
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
19 * CDDL HEADER END
23 * Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #pragma ident "%Z%%M% %I% %E% SMI"
29 #include <sys/systm.h>
30 #include <sys/cmn_err.h>
31 #include <sys/kobj.h>
32 #include <sys/kobj_impl.h>
34 struct zchdr {
35 uint_t zch_magic;
36 uint_t zch_size;
39 #define ZCH_MAGIC 0x3cc13cc1
41 /*ARGSUSED*/
42 void *
43 zcalloc(void *opaque, uint_t items, uint_t size)
45 size_t nbytes = sizeof (struct zchdr) + items * size;
46 struct zchdr *z = kobj_zalloc(nbytes, KM_NOWAIT|KM_TMP);
48 if (z == NULL)
49 return (NULL);
51 z->zch_magic = ZCH_MAGIC;
52 z->zch_size = nbytes;
54 return (z + 1);
57 /*ARGSUSED*/
58 void
59 zcfree(void *opaque, void *ptr)
61 struct zchdr *z = ((struct zchdr *)ptr) - 1;
63 if (z->zch_magic != ZCH_MAGIC)
64 panic("zcfree region corrupt: hdr=%p ptr=%p", (void *)z, ptr);
66 kobj_free(z, z->zch_size);
69 void
70 zmemcpy(void *dest, const void *source, uint_t len)
72 bcopy(source, dest, len);
75 int
76 zmemcmp(const void *s1, const void *s2, uint_t len)
78 return (bcmp(s1, s2, len));
81 void
82 zmemzero(void *dest, uint_t len)
84 bzero(dest, len);