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
Currently, a process control block is wrapped with SpinLock. It's not convenient because even if you just want to get its PID, you need to acquire the lock (proc.lock().pid())!
This issue aims to turn Arc<SpinLock<Process>> into Arc<Process>.
The text was updated successfully, but these errors were encountered:
Currently, a process control block is wrapped with
SpinLock
. It's not convenient because even if you just want to get its PID, you need to acquire the lock (proc.lock().pid()
)!This issue aims to turn
Arc<SpinLock<Process>>
intoArc<Process>
.The text was updated successfully, but these errors were encountered: