diff options
author | midipix <writeonce@midipix.org> | 2016-10-23 21:54:56 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:47 -0500 |
commit | dc2117ff6b5094eacae9979617ee0df9be2fc0c9 (patch) | |
tree | b684ebc5fc9e8b3d85dbf507b7410629f801317c /include | |
parent | 90a7d31f03944762466bcc3cab5ab34c4a738fcd (diff) | |
download | mdso-dc2117ff6b5094eacae9979617ee0df9be2fc0c9.tar.bz2 mdso-dc2117ff6b5094eacae9979617ee0df9be2fc0c9.tar.xz |
mdso.h: added public error trace definitions.
Diffstat (limited to 'include')
-rw-r--r-- | include/mdso/mdso.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/mdso/mdso.h b/include/mdso/mdso.h index 746dd8a..192dcb0 100644 --- a/include/mdso/mdso.h +++ b/include/mdso/mdso.h @@ -37,6 +37,12 @@ extern "C" { #define MDSO_DRIVER_DRY_RUN 0x0020 #define MDSO_DRIVER_QUAD_PTR 0x0040 +/* error flags */ +#define MDSO_ERROR_TOP_LEVEL 0x0001 +#define MDSO_ERROR_NESTED 0x0002 +#define MDSO_ERROR_CHILD 0x0004 +#define MDSO_ERROR_CUSTOM 0x0008 + struct mdso_source_version { int major; @@ -50,6 +56,15 @@ struct mdso_input { size_t size; }; +struct mdso_error_info { + int syserror; + int liberror; + const char * function; + int line; + unsigned flags; + void * ctx; +}; + struct mdso_common_ctx { uint64_t drvflags; uint64_t actflags; @@ -65,6 +80,7 @@ struct mdso_driver_ctx { const char * program; const char * module; const struct mdso_common_ctx * cctx; + struct mdso_error_info ** errv; void * any; int status; int nerrors; |