diff options
author | Santo Cariotti <santo@dcariotti.me> | 2023-10-16 21:41:31 +0200 |
---|---|---|
committer | Santo Cariotti <santo@dcariotti.me> | 2023-10-16 21:41:31 +0200 |
commit | 38e07fae8b3d06cd43b4c9793c07c2048b32d095 (patch) | |
tree | 7cb620e87e0c12f911bdb2416b44750f016607d2 /src/arch/mod.rs | |
parent | e3731c8de1aa317eee447dcb8afb6e495f04436d (diff) |
Add generic `syscall_name` function
Diffstat (limited to 'src/arch/mod.rs')
-rw-r--r-- | src/arch/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
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() +} |