dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / fm / fminject / common / inj_util.c
blob48f45bd6e1a9f827c544dcb481b93b806a963e47
1 /*
2 * CDDL HEADER START
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License, Version 1.0 only
6 * (the "License"). You may not use this file except in compliance
7 * with the License.
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
20 * CDDL HEADER END
23 * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
27 #pragma ident "%Z%%M% %I% %E% SMI"
29 #include <inj.h>
30 #include <inj_err.h>
31 #include <assert.h>
33 const char *
34 inj_item2str(inj_itemtype_t item)
36 static const char *const names[] = { "event", "fmri", "auth", "list" };
38 return (item >= 0 &&
39 item < sizeof (names) / sizeof (char *) ? names[item] : "???");
42 inj_memtype_t
43 inj_item2mem(inj_itemtype_t item)
45 static const inj_memtype_t mems[] = {
46 MEMTYPE_EVENT, MEMTYPE_FMRI, MEMTYPE_AUTH, MEMTYPE_LIST
49 assert(item >= 0 && item < sizeof (mems) / sizeof (inj_memtype_t));
50 return (mems[item]);
54 * Convert a *subset* of inj_memtype_t's to inj_itemtype_t's.
56 inj_itemtype_t
57 inj_mem2item(inj_memtype_t mem)
59 switch (mem) {
60 case MEMTYPE_EVENT:
61 return (ITEMTYPE_EVENT);
62 case MEMTYPE_FMRI:
63 return (ITEMTYPE_FMRI);
64 case MEMTYPE_AUTH:
65 return (ITEMTYPE_AUTH);
66 case MEMTYPE_LIST:
67 return (ITEMTYPE_LIST);
68 default:
69 return (-1);
73 const char *
74 inj_mem2str(inj_memtype_t mem)
76 static const char *names[] = {
77 "UNKNOWN",
78 "int8", "int16", "int32", "int64",
79 "uint8", "uint16", "uint32", "uint64",
80 "bool", "string", "enum",
81 "event", "fmri", "auth"
84 return (mem >= 0 &&
85 mem < sizeof (names) / sizeof (char *) ? names[mem] : "???");