RtlpLockAtomTable

UINT8 __stdcall RtlpLockAtomTable(_RTL_ATOM_TABLE *AtomTable){
  _ETHREAD *CurrentThread; 

  if( !AtomTable || AtomTable->Signature != 1836020801 )
    return 0;
  CurrentThread = (_ETHREAD *)KeGetCurrentThread();
  --CurrentThread->Tcb.KernelApcDisable;
  ExAcquirePushLockExclusiveEx(&AtomTable->PushLock, 0i64);
  return 1;
}

Referenced by:

RtlAddAtomToAtomTableEx
RtlDeleteAtomFromAtomTable
RtlDestroyAtomTable
RtlDestroyLowBoxAtoms
RtlEmptyAtomTable
RtlLookupAtomInAtomTable
RtlPinAtomInAtomTable
RtlQueryAtomInAtomTable
RtlQueryAtomsInAtomTable