aboutsummaryrefslogtreecommitdiff
path: root/C/LzFindMt.h
diff options
context:
space:
mode:
authorIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-06-21 00:00:00 +0000
committerIgor Pavlov <87184205+ip7z@users.noreply.github.com>2023-12-17 14:59:19 +0500
commit5b39dc76f1bc82f941d5c800ab9f34407a06b53a (patch)
treefe5e17420300b715021a76328444088d32047963 /C/LzFindMt.h
parent93be7d4abfd4233228f58ee1fbbcd76d91be66a4 (diff)
download7zip-23.01.tar.gz
7zip-23.01.tar.bz2
7zip-23.01.zip
23.0123.01
Diffstat (limited to 'C/LzFindMt.h')
-rw-r--r--C/LzFindMt.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/C/LzFindMt.h b/C/LzFindMt.h
index 660b724..db5923e 100644
--- a/C/LzFindMt.h
+++ b/C/LzFindMt.h
@@ -1,15 +1,15 @@
1/* LzFindMt.h -- multithreaded Match finder for LZ algorithms 1/* LzFindMt.h -- multithreaded Match finder for LZ algorithms
22021-07-12 : Igor Pavlov : Public domain */ 22023-03-05 : Igor Pavlov : Public domain */
3 3
4#ifndef __LZ_FIND_MT_H 4#ifndef ZIP7_INC_LZ_FIND_MT_H
5#define __LZ_FIND_MT_H 5#define ZIP7_INC_LZ_FIND_MT_H
6 6
7#include "LzFind.h" 7#include "LzFind.h"
8#include "Threads.h" 8#include "Threads.h"
9 9
10EXTERN_C_BEGIN 10EXTERN_C_BEGIN
11 11
12typedef struct _CMtSync 12typedef struct
13{ 13{
14 UInt32 numProcessedBlocks; 14 UInt32 numProcessedBlocks;
15 CThread thread; 15 CThread thread;
@@ -39,7 +39,7 @@ typedef UInt32 * (*Mf_Mix_Matches)(void *p, UInt32 matchMinPos, UInt32 *distance
39typedef void (*Mf_GetHeads)(const Byte *buffer, UInt32 pos, 39typedef void (*Mf_GetHeads)(const Byte *buffer, UInt32 pos,
40 UInt32 *hash, UInt32 hashMask, UInt32 *heads, UInt32 numHeads, const UInt32 *crc); 40 UInt32 *hash, UInt32 hashMask, UInt32 *heads, UInt32 numHeads, const UInt32 *crc);
41 41
42typedef struct _CMatchFinderMt 42typedef struct
43{ 43{
44 /* LZ */ 44 /* LZ */
45 const Byte *pointerToCurPos; 45 const Byte *pointerToCurPos;