#ifndef _ERRORQ_H
#define _ERRORQ_H
#include <sys/types.h>
#include <sys/time.h>
#include <sys/nvpair.h>
#ifdef __cplusplus
extern "C" {
#endif
typedef struct errorq errorq_t;
typedef struct errorq_elem errorq_elem_t;
typedef void (*errorq_func_t)(void *, const void *, const errorq_elem_t *);
#define ERRORQ_VITAL 0x0001
#define ERRORQ_ASYNC 0
#define ERRORQ_SYNC 1
#ifdef _KERNEL
extern errorq_t *errorq_create(const char *, errorq_func_t, void *,
ulong_t, size_t, uint_t, uint_t);
extern errorq_t *errorq_nvcreate(const char *, errorq_func_t, void *,
ulong_t, size_t, uint_t, uint_t);
extern void errorq_destroy(errorq_t *);
extern void errorq_dispatch(errorq_t *, const void *, size_t, uint_t);
extern void errorq_drain(errorq_t *);
extern void errorq_init(void);
extern void errorq_panic(void);
extern errorq_elem_t *errorq_reserve(errorq_t *);
extern void errorq_commit(errorq_t *, errorq_elem_t *, uint_t);
extern void errorq_cancel(errorq_t *, errorq_elem_t *);
extern nvlist_t *errorq_elem_nvl(errorq_t *, const errorq_elem_t *);
extern nv_alloc_t *errorq_elem_nva(errorq_t *, const errorq_elem_t *);
extern void *errorq_elem_dup(errorq_t *, const errorq_elem_t *,
errorq_elem_t **);
extern void errorq_dump();
#endif
#ifdef __cplusplus
}
#endif
#endif