You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
Rebase against 42cb7d2ad1caba08de235e6319b9967296b5d554.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
From a64bc7c1b8d5625fcb7b1b666d95aced4009341b Mon Sep 17 00:00:00 2001
|
||||
From 1b79a7d8eb8c813cca81916eda14090a15b93290 Mon Sep 17 00:00:00 2001
|
||||
From: Sebastian Lackner <sebastian@fds-team.de>
|
||||
Date: Sat, 22 Jul 2017 07:21:45 +0200
|
||||
Subject: [PATCH] ntdll: Improve heap allocation performance. (v2)
|
||||
@@ -8,7 +8,7 @@ Subject: [PATCH] ntdll: Improve heap allocation performance. (v2)
|
||||
1 file changed, 210 insertions(+), 96 deletions(-)
|
||||
|
||||
diff --git a/dlls/ntdll/heap.c b/dlls/ntdll/heap.c
|
||||
index 3cbbff2de35..fc669d9dc4d 100644
|
||||
index 4fe11fe2b48..de33fcce4bb 100644
|
||||
--- a/dlls/ntdll/heap.c
|
||||
+++ b/dlls/ntdll/heap.c
|
||||
@@ -3,6 +3,7 @@
|
||||
@@ -87,7 +87,7 @@ index 3cbbff2de35..fc669d9dc4d 100644
|
||||
-/* Max size of the blocks on the free lists above HEAP_MAX_SMALL_FREE_LIST */
|
||||
-static const SIZE_T HEAP_freeListSizes[] =
|
||||
-{
|
||||
- 0x200, 0x400, 0x1000, ~0UL
|
||||
- 0x200, 0x400, 0x1000, ~(SIZE_T)0
|
||||
-};
|
||||
-#define HEAP_NB_FREE_LISTS (ARRAY_SIZE( HEAP_freeListSizes ) + HEAP_NB_SMALL_FREE_LISTS)
|
||||
-
|
||||
|
Reference in New Issue
Block a user