9 references to GetNativeHandle
System.Private.CoreLib (9)
src\System\Runtime\ControlledExecution.CoreCLR.cs (1)
145AbortThread(_thread.GetNativeHandle());
src\System\Threading\Thread.CoreCLR.cs (8)
102if (StartInternal(GetNativeHandle(), _startHelper?._maxStackSize ?? 0, _priority, _isThreadPool ? Interop.BOOL.TRUE : Interop.BOOL.FALSE, pThreadName, ObjectHandleOnStack.Create(ref exception)) == Interop.BOOL.FALSE) 193InformThreadNameChange(GetNativeHandle(), value, value?.Length ?? 0); 216Interop.BOOL res = GetIsBackground(GetNativeHandle()); 227SetIsBackground(GetNativeHandle(), value ? Interop.BOOL.TRUE : Interop.BOOL.FALSE); 307var state = (ThreadState)GetThreadState(GetNativeHandle()); 321SetWaitSleepJoinState(GetNativeHandle()); 331ClearWaitSleepJoinState(GetNativeHandle()); 591CheckForPendingInterrupt(CurrentThread.GetNativeHandle());