зеркало из https://github.com/microsoft/snmalloc.git
* Fix #631 Add wrapper override for the Windows variant of maloc_usable_size : _msize Co-authored-by: Matthew Parkinson <mjp41@users.noreply.github.com>
This commit is contained in:
Родитель
35eef33099
Коммит
6b8f3338c7
|
@ -41,6 +41,14 @@ extern "C"
|
|||
return snmalloc::libc::malloc_usable_size(ptr);
|
||||
}
|
||||
|
||||
#ifdef _WIN32
|
||||
SNMALLOC_EXPORT
|
||||
size_t SNMALLOC_NAME_MANGLE(_msize)(MALLOC_USABLE_SIZE_QUALIFIER void* ptr)
|
||||
{
|
||||
return snmalloc::libc::malloc_usable_size(ptr);
|
||||
}
|
||||
#endif
|
||||
|
||||
SNMALLOC_EXPORT
|
||||
size_t SNMALLOC_NAME_MANGLE(malloc_good_size)(size_t size)
|
||||
{
|
||||
|
|
Загрузка…
Ссылка в новой задаче