Mono.MicroThreads.Scheduler.WakeUpInternal C# (CSharp) Метод

WakeUpInternal() статический приватный Метод

static private WakeUpInternal ( MicroThread thread ) : void
thread MicroThread
Результат void
        void WakeUpInternal(MicroThread thread)
        {
            Print("Waking up thread {0}", thread);

            m_waitingThreadCount--;

            thread.m_state = MicroThreadState.Scheduled;

            AddInternal(thread);
        }

Usage Example

Пример #1
0
 public static void WakeUp(MicroThread thread)
 {
     s_scheduler.WakeUpInternal(thread);
 }