mirror of
https://github.com/reactos/reactos.git
synced 2025-01-04 05:20:54 +00:00
61192390cf
* Move RtlRunOnce functions from kernel32_vista to rtl_vista and export them from ntdll_vista * Move condvar.c and srw.c from ntdll_vista to rtl_vista * Move ntdll_vista build script to a subfolder of ntdll The RtlRunOnce functions are taken from wine, completely unmodified. The code that was in kernel32_vista had change that used a global keyed_event handle, but was never initialized, so we were still passing NULL thus using the global ExpCritSecOutOfMemoryEvent.
19 lines
511 B
C
19 lines
511 B
C
|
|
#include "k32_vista.h"
|
|
|
|
#include <ndk/exfuncs.h>
|
|
#include <wine/config.h>
|
|
#include <wine/port.h>
|
|
|
|
DWORD WINAPI RtlRunOnceExecuteOnce( RTL_RUN_ONCE *once, PRTL_RUN_ONCE_INIT_FN func,
|
|
void *param, void **context );
|
|
|
|
/* Taken from Wine kernel32/sync.c */
|
|
|
|
/*
|
|
* @implemented
|
|
*/
|
|
BOOL NTAPI InitOnceExecuteOnce( INIT_ONCE *once, PINIT_ONCE_FN func, void *param, void **context )
|
|
{
|
|
return !RtlRunOnceExecuteOnce( once, (PRTL_RUN_ONCE_INIT_FN)func, param, context );
|
|
}
|