summaryrefslogtreecommitdiffhomepage
path: root/src/internal
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-10-23 22:15:44 -0400
committermidipix <writeonce@midipix.org>2016-11-11 00:22:47 -0500
commita9007d5c41b587d26634c633068f9ec0fbe2dc87 (patch)
tree8a8e77f6bf8cfb38c2cf3de78424bcc1b825bd54 /src/internal
parentdc2117ff6b5094eacae9979617ee0df9be2fc0c9 (diff)
downloadmdso-a9007d5c41b587d26634c633068f9ec0fbe2dc87.tar.bz2
mdso-a9007d5c41b587d26634c633068f9ec0fbe2dc87.tar.xz
driver: added initial error info vector and buffer allocation.
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/mdso_driver_impl.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/internal/mdso_driver_impl.h b/src/internal/mdso_driver_impl.h
index a697528..c6131b8 100644
--- a/src/internal/mdso_driver_impl.h
+++ b/src/internal/mdso_driver_impl.h
@@ -32,6 +32,10 @@ struct mdso_driver_ctx_impl {
char * asmbase;
int fddst;
int fdtmpin;
+ struct mdso_error_info**errinfp;
+ struct mdso_error_info**erricap;
+ struct mdso_error_info *erriptr[64];
+ struct mdso_error_info erribuf[64];
};
struct mdso_unit_ctx_impl {