From c9c5f77d90d27819aa63a49264cdb37364c663a5 Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 24 Oct 2016 18:54:25 -0400 Subject: driver: added initial error info vector and buffer allocation. --- src/internal/perk_driver_impl.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/internal') diff --git a/src/internal/perk_driver_impl.h b/src/internal/perk_driver_impl.h index 7e9e4f7..5063fa1 100644 --- a/src/internal/perk_driver_impl.h +++ b/src/internal/perk_driver_impl.h @@ -29,6 +29,10 @@ struct pe_driver_ctx_impl { struct pe_io_ctx ioctx; struct pe_common_ctx cctx; struct pe_driver_ctx ctx; + struct pe_error_info ** errinfp; + struct pe_error_info ** erricap; + struct pe_error_info * erriptr[64]; + struct pe_error_info erribuf[64]; }; struct pe_unit_ctx_impl { -- cgit v1.2.3