You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, we use a task list that contains all non-terminated tasks. R/W access time for this list will be O(n) with n = number of running concurrent tasks.
Need to make it O(1).
Maybe research run queue (Linux 2.6).