gila/src/kernel/syscall_runner.rs
2025-05-18 21:17:26 -04:00

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.
}