增加gettid以及线程组group leader相关的逻辑 (#430)

* 增加gettid以及线程组group leader相关的逻辑
This commit is contained in:
LoGin
2023-11-09 16:48:45 +08:00
committed by GitHub
parent 0facf623d6
commit 393f691574
8 changed files with 99 additions and 11 deletions

View File

@ -197,7 +197,7 @@ pub trait Socket: Sync + Send + Debug {
_optval: &[u8],
) -> Result<(), SystemError> {
kwarn!("setsockopt is not implemented");
return Err(SystemError::ENOSYS);
return Ok(());
}
}