diff --git a/arena.h b/arena.h index 092154a..c28cf55 100644 --- a/arena.h +++ b/arena.h @@ -77,7 +77,8 @@ Each block contains: - prev/next: Links to neighboring blocks - the arena pointer points to the current block -The arena allocates from the current block where the global position is or from the free list. +The arena allocates from the current block where the global position is or from +the free list. Blocks form a single logical address space: global_offset = pos @@ -335,10 +336,6 @@ typedef struct mem_arena { // configuration u64 align; - // Element size: - // - stack mode : fixed > 0 - // - pointer fixed : fixed > 0 - // - pointer variable : 0 u64 push_size; // Pointer mode only diff --git a/binaries/changlog.txt b/binaries/changelog.txt similarity index 96% rename from binaries/changlog.txt rename to binaries/changelog.txt index bfd17e6..a9da276 100644 --- a/binaries/changlog.txt +++ b/binaries/changelog.txt @@ -1,7 +1,8 @@ V1.0: Recursive scan +v1.1: Collects more metadata + v2.0: Multi threaded scan -Collects more metadata v2.1: Uses AVX2 instead of SSE2 diff --git a/binaries/file_hasher_v1.1.exe b/binaries/file_hasher_v1.1.exe new file mode 100644 index 0000000..33c2f77 Binary files /dev/null and b/binaries/file_hasher_v1.1.exe differ