17 Mar
2017
17 Mar
'17
2:41 p.m.
Hi, On 03/16/17 23:12, Gijs Vermeulen wrote:
dlls/msvcrt/lock.c | 9 +++++++++ I think it would be better to implement the function in heap.c file. Could you please move the implementation there.
+void * __cdecl Alloc(MSVCRT_size_t _NumBytes) Please rename the function to Concurrency_Alloc and argument name to size.
+ void *p = MSVCRT_malloc(_NumBytes); + FIXME("(%ld, %p) stub\n", _NumBytes, p); How about changing the FIXME message to something like: FIXME("(%ld) returning %p\n", size, p); (this matches the trace of operator new).
Thanks, Piotr