Skip to content
Snippets Groups Projects
Verified Commit 2cf3ccae authored by Jeremy Soller's avatar Jeremy Soller
Browse files

Fix import of user_regs_struct

parent a1034b69
No related branches found
No related tags found
No related merge requests found
Pipeline #7536 failed
......@@ -8,10 +8,15 @@ use super::super::{errno, types::*, Pal, PalPtrace, PalSignal, Sys};
use crate::{
c_str::CString,
fs::File,
header::{errno as errnoh, fcntl, signal, sys_ptrace, sys_user::user_regs_struct},
header::{errno as errnoh, fcntl, signal, sys_ptrace},
io::{self, prelude::*},
sync::{Mutex, Once},
};
#[cfg(target_arch = "aarch64")]
use crate::header::arch_aarch64_user::user_regs_struct;
#[cfg(target_arch = "x86_64")]
use crate::header::arch_x64_user::user_regs_struct;
use alloc::collections::{btree_map::Entry, BTreeMap};
use core::mem;
use syscall;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment