xref: /titanic_41/usr/src/lib/librdc/common/rdcerr.h (revision de81e71e031139a0a7f13b7bf64152c3faa76698)
1 /*
2  * CDDL HEADER START
3  *
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.
7  *
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.
12  *
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]
18  *
19  * CDDL HEADER END
20  */
21 /*
22  * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
23  * Use is subject to license terms.
24  */
25 
26 #ifndef	_RDCERR_H
27 #define	_RDCERR_H
28 
29 #ifdef	__cplusplus
30 extern "C" {
31 #endif
32 
33 #include <sys/types.h>
34 #include <stdio.h>
35 #include <strings.h>
36 #include <stdlib.h>
37 
38 #include <sys/unistat/spcs_s.h>
39 #include <sys/unistat/spcs_s_u.h>
40 #include <sys/unistat/spcs_s_impl.h>
41 #include <sys/unistat/spcs_errors.h>
42 
43 /* serious error? */
44 #define	RDC_FATAL	0x02
45 #define	RDC_NONFATAL	0x03
46 
47 /* types of errors */
48 #define	RDC_INTERNAL	0x01
49 #define	RDC_OS		0X02
50 #define	RDC_SPCS	0x04
51 #define	RDC_DSCFG	0x08
52 
53 /* errors */
54 #define	RDC_EINVAL	"Invalid argument"
55 
56 #define	RDC_NAME_DU_JOUR "Remote Mirror"
57 
58 #ifndef	RDC_ERR_SIZE
59 #define	RDC_ERR_SIZE	256
60 #endif
61 
62 
63 void
64 rdc_set_error(spcs_s_info_t *ustatus, int context, int severity,
65 char *errorstr, ...);
66 
67 char *
68 rdc_err(int *severity);
69 
70 #ifdef	__cplusplus
71 }
72 #endif
73 
74 #endif	/* _RDCERR_H */
75