gila/src/kernel/syscall_runner.rs
2025-10-09 13:12:54 -04:00

12 lines
251 B
Rust

// Copyright (c) 2025 shibedrill
// SPDX-License-Identifier: MIT
#![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.
}