We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 049d0af + e119cae commit f2dc14fCopy full SHA for f2dc14f
src/vxworks/mod.rs
@@ -753,6 +753,7 @@ pub const S_taskLib_ILLEGAL_PRIORITY: c_int = taskErrorBase + 0x0068;
753
754
// FIXME(vxworks): could also be useful for TASK_DESC type
755
pub const VX_TASK_NAME_LENGTH: c_int = 31;
756
+pub const VX_TASK_RENAME_LENGTH: c_int = 16;
757
758
// semLibCommon.h
759
pub const S_semLib_INVALID_STATE: c_int = semErrorBase + 0x0065;
@@ -814,6 +815,9 @@ pub const S_IWOTH: c_int = 0o0002;
814
815
pub const S_IXOTH: c_int = 0o0001;
816
pub const S_IRWXO: c_int = 0o0007;
817
818
+pub const UTIME_OMIT: c_long = 0x3ffffffe;
819
+pub const UTIME_NOW: c_long = 0x3fffffff;
820
+
821
// socket.h
822
pub const SOL_SOCKET: c_int = 0xffff;
823
pub const SOMAXCONN: c_int = 128;
0 commit comments