move timeval to sys_select

This commit is contained in:
Ron Williams
2026-01-30 15:53:15 +00:00
parent a32fd56e61
commit 2c3201eaeb
11 changed files with 35 additions and 28 deletions
+2 -1
View File
@@ -7,9 +7,10 @@ use crate::{
header::{
signal::sigevent,
sys_resource::{rlimit, rusage},
sys_select::timeval,
sys_stat::stat,
sys_statvfs::statvfs,
sys_time::{timeval, timezone},
sys_time::timezone,
sys_utsname::utsname,
time::{itimerspec, timespec},
},
+2 -1
View File
@@ -39,9 +39,10 @@ use crate::{
sys_mman::{MAP_ANONYMOUS, MAP_FAILED, PROT_READ, PROT_WRITE},
sys_random,
sys_resource::{RLIM_INFINITY, rlimit, rusage},
sys_select::timeval,
sys_stat::{S_ISGID, S_ISUID, S_ISVTX, stat},
sys_statvfs::statvfs,
sys_time::{timeval, timezone},
sys_time::timezone,
sys_utsname::{UTSLENGTH, utsname},
sys_wait,
time::{TIMER_ABSTIME, itimerspec, timer_internal_t, timespec},
+1 -1
View File
@@ -21,11 +21,11 @@ use crate::{
},
netinet_in::{in_addr, in_port_t, sockaddr_in},
string::strnlen,
sys_select::timeval,
sys_socket::{
CMSG_ALIGN, CMSG_DATA, CMSG_FIRSTHDR, CMSG_LEN, CMSG_NXTHDR, CMSG_SPACE, cmsghdr,
constants::*, msghdr, sa_family_t, sockaddr, socklen_t, ucred,
},
sys_time::timeval,
sys_uio::iovec,
sys_un::sockaddr_un,
},