From a9007d5c41b587d26634c633068f9ec0fbe2dc87 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 23 Oct 2016 22:15:44 -0400 Subject: driver: added initial error info vector and buffer allocation. --- src/internal/mdso_driver_impl.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/internal') 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 { -- cgit v1.2.3