We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eda627e commit 33c96c9Copy full SHA for 33c96c9
src/unix/redox/mod.rs
@@ -28,7 +28,6 @@ pub type suseconds_t = c_int;
28
pub type tcflag_t = u32;
29
pub type time_t = c_longlong;
30
pub type id_t = c_uint;
31
-pub type pid_t = usize;
32
pub type uid_t = c_int;
33
pub type gid_t = c_int;
34
@@ -247,7 +246,7 @@ s! {
247
246
}
248
249
pub struct ucred {
250
- pub pid: pid_t,
+ pub pid: crate::pid_t,
251
pub uid: uid_t,
252
pub gid: gid_t,
253
0 commit comments