12 lines
264 B
Rust
12 lines
264 B
Rust
// Copyright (c) 2025 shibedrill
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#![allow(dead_code)]
|
|
|
|
use crate::process::Process;
|
|
|
|
#[allow(unused_variables)]
|
|
pub fn run_syscall(process: &mut Process) {
|
|
// Get the syscall ID from the process's CPU registers.
|
|
}
|