Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ CreateTimerQueues()

static TimerQueue[] System.Threading.TimerQueue.CreateTimerQueues ( )
inlinestaticprivate

Definition at line 119 of file TimerQueue.cs.

120 {
121 TimerQueue[] array = new TimerQueue[Environment.ProcessorCount];
122 for (int i = 0; i < array.Length; i++)
123 {
124 array[i] = new TimerQueue(i);
125 }
126 return array;
127 }

References System.Threading.TimerQueue.TimerQueue(), System.array, and System.Environment.ProcessorCount.