mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[NTOSKRNL]
Get rid off TAG macro svn path=/trunk/; revision=55929
This commit is contained in:
@@ -495,7 +495,7 @@ FsRtlNotifyInitializeSync(IN PNOTIFY_SYNC *NotifySync)
|
||||
*NotifySync = NULL;
|
||||
|
||||
RealNotifySync = ExAllocatePoolWithTag(NonPagedPool | POOL_RAISE_IF_ALLOCATION_FAILURE,
|
||||
sizeof(REAL_NOTIFY_SYNC), TAG('F', 'S', 'N', 'S'));
|
||||
sizeof(REAL_NOTIFY_SYNC), 'FSNS');
|
||||
ExInitializeFastMutex(&(RealNotifySync->FastMutex));
|
||||
RealNotifySync->OwningThread = 0;
|
||||
RealNotifySync->OwnerCount = 0;
|
||||
@@ -570,7 +570,7 @@ FsRtlNotifyUninitializeSync(IN PNOTIFY_SYNC *NotifySync)
|
||||
{
|
||||
if (*NotifySync)
|
||||
{
|
||||
ExFreePoolWithTag(*NotifySync, TAG('F', 'S', 'N', 'S'));
|
||||
ExFreePoolWithTag(*NotifySync, 'FSNS');
|
||||
*NotifySync = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,10 +6,6 @@
|
||||
* PROGRAMMERS: Alex Ionescu ([email protected])
|
||||
*/
|
||||
|
||||
#ifndef TAG
|
||||
#define TAG(w,x,y,z) (((w)<<24)|((x)<<16)|((y)<<8)|(z))
|
||||
#endif
|
||||
|
||||
//
|
||||
// Define this if you want debugging support
|
||||
//
|
||||
|
||||
Reference in New Issue
Block a user