use Rust SnakeCase

This commit is contained in:
Ralf Jung 2022-06-29 22:17:46 -04:00
parent ff62c3ac98
commit 6a204e2dec

View File

@ -10,7 +10,7 @@
pub enum Dlsym { pub enum Dlsym {
Linux(linux::Dlsym), Linux(linux::Dlsym),
MacOs(macos::Dlsym), MacOs(macos::Dlsym),
FreeBSD(freebsd::Dlsym), FreeBsd(freebsd::Dlsym),
} }
impl Dlsym { impl Dlsym {
@ -20,7 +20,7 @@ pub fn from_str<'tcx>(name: &str, target_os: &str) -> InterpResult<'tcx, Option<
Ok(match target_os { Ok(match target_os {
"linux" => linux::Dlsym::from_str(name)?.map(Dlsym::Linux), "linux" => linux::Dlsym::from_str(name)?.map(Dlsym::Linux),
"macos" => macos::Dlsym::from_str(name)?.map(Dlsym::MacOs), "macos" => macos::Dlsym::from_str(name)?.map(Dlsym::MacOs),
"freebsd" => freebsd::Dlsym::from_str(name)?.map(Dlsym::FreeBSD), "freebsd" => freebsd::Dlsym::from_str(name)?.map(Dlsym::FreeBsd),
_ => unreachable!(), _ => unreachable!(),
}) })
} }
@ -43,7 +43,7 @@ fn call_dlsym(
match dlsym { match dlsym {
Dlsym::Linux(dlsym) => linux::EvalContextExt::call_dlsym(this, dlsym, args, dest, ret), Dlsym::Linux(dlsym) => linux::EvalContextExt::call_dlsym(this, dlsym, args, dest, ret),
Dlsym::MacOs(dlsym) => macos::EvalContextExt::call_dlsym(this, dlsym, args, dest, ret), Dlsym::MacOs(dlsym) => macos::EvalContextExt::call_dlsym(this, dlsym, args, dest, ret),
Dlsym::FreeBSD(dlsym) => Dlsym::FreeBsd(dlsym) =>
freebsd::EvalContextExt::call_dlsym(this, dlsym, args, dest, ret), freebsd::EvalContextExt::call_dlsym(this, dlsym, args, dest, ret),
} }
} }