28 Jan
2023
28 Jan
'23
6:50 a.m.
Jinoh Kang (@iamahuman) commented about dlls/ntdll/heap.c:
+struct heap_counters +{ + volatile BYTE live; + volatile WORD total; +}; + +struct heap_thread_data +{ + struct entry free_lists[BLOCK_SIZE_CATEGORY_COUNT]; + /* requires heap lock to access */ + struct entry defer_list; + volatile BOOL has_defer; +}; + +/* affinity to tid mapping array, defines the amount of supported concurrent threads */
```suggestion:-0+0 /* affinity to tid mapping array, defines the amount of * supported concurrent threads for threaded heaps. */ ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1628#note_22224