From 38e07fae8b3d06cd43b4c9793c07c2048b32d095 Mon Sep 17 00:00:00 2001 From: Santo Cariotti Date: Mon, 16 Oct 2023 21:41:31 +0200 Subject: Add generic `syscall_name` function --- src/arch/mod.rs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/arch') diff --git a/src/arch/mod.rs b/src/arch/mod.rs index 057cec9..d34a135 100644 --- a/src/arch/mod.rs +++ b/src/arch/mod.rs @@ -1 +1,7 @@ +#![allow(dead_code)] pub mod linux; + +/// Generic `syscalll_name` called by a not-defined table +pub fn syscall_name(rax: u64) -> String { + rax.to_string() +} -- cgit v1.2.3-18-g5258