summaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-10-25 20:31:05 -0400
committermidipix <writeonce@midipix.org>2016-11-11 00:22:51 -0500
commit1d4a9e7cb47178077e112f73bf6a60397f519497 (patch)
treea1fceb82604d4e9edf677470e1e0dbf4034a98c0 /include
parenta83ebf963950445ec30130f048fda5343ca8f621 (diff)
downloadmdso-1d4a9e7cb47178077e112f73bf6a60397f519497.tar.bz2
mdso-1d4a9e7cb47178077e112f73bf6a60397f519497.tar.xz
driver: struct mdso_error_info: extend and refactor.
Diffstat (limited to 'include')
-rw-r--r--include/mdso/mdso.h15
1 files changed, 9 insertions, 6 deletions
diff --git a/include/mdso/mdso.h b/include/mdso/mdso.h
index 9efda11..1cceb7b 100644
--- a/include/mdso/mdso.h
+++ b/include/mdso/mdso.h
@@ -58,12 +58,15 @@ struct mdso_input {
};
struct mdso_error_info {
- int syserror;
- int liberror;
- const char * function;
- int line;
- unsigned flags;
- void * ctx;
+ const struct mdso_driver_ctx * edctx;
+ const struct mdso_unit_ctx * euctx;
+ const char * eunit;
+ int esyscode;
+ int elibcode;
+ const char * efunction;
+ int eline;
+ unsigned eflags;
+ void * eany;
};
struct mdso_common_ctx {