Finds the session with the given SID.
(sid: Pid)
| 422 | |
| 423 | /// Finds the session with the given SID. |
| 424 | pub fn get_session(sid: Pid) -> AxResult<Arc<Session>> { |
| 425 | SESSION_TABLE.read().get(&sid).ok_or(AxError::NoSuchProcess) |
| 426 | } |
| 427 | |
| 428 | /// Poll the timer |
| 429 | pub fn poll_timer(task: &TaskInner) { |