-
-
Notifications
You must be signed in to change notification settings - Fork 180
refactor(ipc): Refactor the syscalls in ipc #1183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
sparkzky
merged 5 commits into
DragonOS-Community:master
from
Vitus213:change_ipc_syscall
May 30, 2025
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| use crate::arch::ipc::signal::{SigCode, Signal}; | ||
| use crate::ipc::signal_types::{SigInfo, SigType}; | ||
| use crate::process::{process_group::Pgid, Pid, ProcessManager}; | ||
| use core::sync::atomic::compiler_fence; | ||
| use system_error::SystemError; | ||
|
|
||
| /// ### 杀死一个进程 | ||
| pub fn kill_process(pid: Pid, sig: Signal) -> Result<usize, SystemError> { | ||
| // 初始化signal info | ||
| let mut info = SigInfo::new(sig, 0, SigCode::User, SigType::Kill(pid)); | ||
| compiler_fence(core::sync::atomic::Ordering::SeqCst); | ||
|
|
||
| let ret = sig | ||
| .send_signal_info(Some(&mut info), pid) | ||
| .map(|x| x as usize); | ||
|
|
||
| compiler_fence(core::sync::atomic::Ordering::SeqCst); | ||
| ret | ||
| } | ||
|
|
||
| /// ### 杀死一个进程组 | ||
| pub fn kill_process_group(pgid: Pgid, sig: Signal) -> Result<usize, SystemError> { | ||
| let pg = ProcessManager::find_process_group(pgid).ok_or(SystemError::ESRCH)?; | ||
| let inner = pg.process_group_inner.lock(); | ||
| for pcb in inner.processes.values() { | ||
| kill_process(pcb.pid(), sig)?; // Call the new common function | ||
| } | ||
| Ok(0) | ||
| } | ||
|
|
||
| /// ### 杀死所有进程 | ||
| /// - 该函数会杀死所有进程,除了当前进程和init进程 | ||
| pub fn kill_all(sig: Signal) -> Result<usize, SystemError> { | ||
| let current_pid = ProcessManager::current_pcb().pid(); | ||
| let all_processes = ProcessManager::get_all_processes(); | ||
|
|
||
| for pid_val in all_processes { | ||
| if pid_val == current_pid || pid_val.data() == 1 { | ||
| continue; | ||
| } | ||
| kill_process(pid_val, sig)?; // Call the new common function | ||
| } | ||
| Ok(0) | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| pub mod generic_signal; | ||
| pub mod kill; | ||
| pub mod pipe; | ||
| pub mod shm; | ||
| pub mod signal; | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.