Fix to unbreak tree. This is temporary until I come up with a good NtCurrentPeb macro that can be shared. Note that the brekage is because an ntdll only function was put in rtl but never used from ntoskrnl until my previous patch. It could be shared, but I need to do some work on it.

svn path=/trunk/; revision=13117
This commit is contained in:
Alex Ionescu 2005-01-18 06:00:55 +00:00
parent e67bd739cb
commit 3f10399e5d
2 changed files with 22 additions and 21 deletions

View file

@ -30,27 +30,6 @@
/* FUNCTIONS ****************************************************************/ /* FUNCTIONS ****************************************************************/
/*
* @implemented
*/
VOID STDCALL
RtlAcquirePebLock(VOID)
{
PPEB Peb = NtCurrentPeb ();
Peb->FastPebLockRoutine (Peb->FastPebLock);
}
/*
* @implemented
*/
VOID STDCALL
RtlReleasePebLock(VOID)
{
PPEB Peb = NtCurrentPeb ();
Peb->FastPebUnlockRoutine (Peb->FastPebLock);
}
static inline VOID static inline VOID
RtlpCopyParameterString(PWCHAR *Ptr, RtlpCopyParameterString(PWCHAR *Ptr,
PUNICODE_STRING Destination, PUNICODE_STRING Destination,

View file

@ -22,6 +22,28 @@
/* FUNCTIONS *****************************************************************/ /* FUNCTIONS *****************************************************************/
/* FIXME: Added here temporarly until I fix this properly tomorrow */
/*
* @implemented
*/
VOID STDCALL
RtlAcquirePebLock(VOID)
{
PPEB Peb = NtCurrentPeb ();
Peb->FastPebLockRoutine (Peb->FastPebLock);
}
/* FIXME: Added here temporarly until I fix this properly tomorrow */
/*
* @implemented
*/
VOID STDCALL
RtlReleasePebLock(VOID)
{
PPEB Peb = NtCurrentPeb ();
Peb->FastPebUnlockRoutine (Peb->FastPebLock);
}
/* /*
* @implemented * @implemented
*/ */