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 31, 2024
1 parent 58eab8d commit 5ac880d
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions src/qbittorrent.exe.manifest
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@
</application>
</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>
<!-- Enable Segment Heap -->
<heapType xmlns="http://schemas.microsoft.com/SMI/2020/WindowsSettings">SegmentHeap</heapType>
<!-- Enable long paths that exceed MAX_PATH in length -->
<longPathAware xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">true</longPathAware>
</windowsSettings>
</application>
</assembly>

0 comments on commit 5ac880d

Please sign in to comment.