summaryrefslogtreecommitdiff
path: root/src/internal
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2024-05-25 18:18:11 +0000
committermidipix <writeonce@midipix.org>2024-05-26 03:41:26 +0000
commitacc91bc260046e228d8043e91d33d6793fb41c1a (patch)
treea40b97ddd7cf5c1c988388e52664aea35027f74d /src/internal
parentbef28deed2d3560dd25d3fe8c0024c94a6b15f8b (diff)
downloadtpax-acc91bc260046e228d8043e91d33d6793fb41c1a.tar.bz2
tpax-acc91bc260046e228d8043e91d33d6793fb41c1a.tar.xz
driver: implemented internal queue vectorization.
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/tpax_driver_impl.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/internal/tpax_driver_impl.h b/src/internal/tpax_driver_impl.h
index f5fb9c8..1779043 100644
--- a/src/internal/tpax_driver_impl.h
+++ b/src/internal/tpax_driver_impl.h
@@ -78,6 +78,7 @@ struct tpax_driver_ctx_impl {
char ** prefixp;
char ** prefcap;
char * prefptr[64];
+ struct tpax_dirent ** direntv;
struct tpax_dirent_buffer * dirents;
struct tpax_dirent * dirmark;
void * dirbuff;
@@ -275,4 +276,6 @@ static inline ssize_t tpax_get_archive_block_size(const struct tpax_driver_ctx *
return 0;
}
+int tpax_update_queue_vector(const struct tpax_driver_ctx * dctx);
+
#endif