Skip to content

Commit

Permalink
Opt into Windows SegmentHeap
Browse files Browse the repository at this point in the history
SegmentHeap provides a faster malloc implementation that only available with Dynamic UCRT in Windows 10, version 2004 (build 19041) and later
  • Loading branch information
Andarwinux committed Aug 27, 2024
1 parent 58eab8d commit 81ec4df
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/qbittorrent.exe.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,10 @@
</compatibility>

<!-- Enable long paths that exceed MAX_PATH in length -->
<asmv3:application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">
<longPathAware>true</longPathAware>
</asmv3:windowsSettings>
</asmv3:application>
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
<heapType xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">SegmentHeap</heapType>
</windowsSettings>
</application>
</assembly>

0 comments on commit 81ec4df

Please sign in to comment.