diff options
Diffstat (limited to 'C/LzFindMt.h')
-rw-r--r-- | C/LzFindMt.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/C/LzFindMt.h b/C/LzFindMt.h index fcb479d..89984f5 100644 --- a/C/LzFindMt.h +++ b/C/LzFindMt.h | |||
@@ -1,5 +1,5 @@ | |||
1 | /* LzFindMt.h -- multithreaded Match finder for LZ algorithms | 1 | /* LzFindMt.h -- multithreaded Match finder for LZ algorithms |
2 | 2024-01-22 : Igor Pavlov : Public domain */ | 2 | : Igor Pavlov : Public domain */ |
3 | 3 | ||
4 | #ifndef ZIP7_INC_LZ_FIND_MT_H | 4 | #ifndef ZIP7_INC_LZ_FIND_MT_H |
5 | #define ZIP7_INC_LZ_FIND_MT_H | 5 | #define ZIP7_INC_LZ_FIND_MT_H |
@@ -12,8 +12,10 @@ EXTERN_C_BEGIN | |||
12 | typedef struct | 12 | typedef struct |
13 | { | 13 | { |
14 | UInt32 numProcessedBlocks; | 14 | UInt32 numProcessedBlocks; |
15 | CThread thread; | 15 | Int32 affinityGroup; |
16 | UInt64 affinityInGroup; | ||
16 | UInt64 affinity; | 17 | UInt64 affinity; |
18 | CThread thread; | ||
17 | 19 | ||
18 | BoolInt wasCreated; | 20 | BoolInt wasCreated; |
19 | BoolInt needStart; | 21 | BoolInt needStart; |