summaryrefslogtreecommitdiffhomepage
path: root/src/internal
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-10-24 18:54:25 -0400
committermidipix <writeonce@midipix.org>2016-11-10 23:35:51 -0500
commitc9c5f77d90d27819aa63a49264cdb37364c663a5 (patch)
treeb5ae312d3b35f2c8d519468e61fd1a789848a199 /src/internal
parente8769a78fcf3df8b492adff165e1bcb3014ad95a (diff)
downloadperk-c9c5f77d90d27819aa63a49264cdb37364c663a5.tar.bz2
perk-c9c5f77d90d27819aa63a49264cdb37364c663a5.tar.xz
driver: added initial error info vector and buffer allocation.
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/perk_driver_impl.h4
1 files changed, 4 insertions, 0 deletions
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 {