Added patch to improve heap allocation performance.

This commit is contained in:
Sebastian Lackner
2014-08-27 02:58:27 +02:00
parent 3246faa114
commit a8f3f9c4e4
5 changed files with 51 additions and 1 deletions

View File

@@ -32,6 +32,7 @@ PATCHLIST := \
ntdll-FileDispositionInformation.ok \
ntdll-Fix_Alignment.ok \
ntdll-Fix_Free.ok \
ntdll-Heap_FreeLists.ok \
ntdll-Junction_Points.ok \
ntdll-Pipe_SpecialCharacters.ok \
ntdll-loader_EntryPoint.ok \
@@ -544,6 +545,21 @@ ntdll-Fix_Free.ok:
echo '+ { "ntdll-Fix_Free", "Erich E. Hoover", "Fix unintentional leaks with ntdll internals" },'; \
) > ntdll-Fix_Free.ok
# Patchset ntdll-Heap_FreeLists
# |
# | Included patches:
# | * Improve heap allocation performance by using more fine-grained free lists. [by Steaphan Greene]
# |
# | Modified files:
# | * dlls/ntdll/heap.c
# |
.INTERMEDIATE: ntdll-Heap_FreeLists.ok
ntdll-Heap_FreeLists.ok:
$(call APPLY_FILE,ntdll-Heap_FreeLists/0001-ntdll-Improve-heap-allocation-performance-by-using-m.patch)
@( \
echo '+ { "ntdll-Heap_FreeLists", "Steaphan Greene", "Improve heap allocation performance by using more fine-grained free lists." },'; \
) > ntdll-Heap_FreeLists.ok
# Patchset ntdll-Junction_Points
# |
# | Included patches: