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 952bc81 commit 147dc99Copy full SHA for 147dc99
src/vxworks/mod.rs
@@ -745,6 +745,7 @@ pub const S_taskLib_ILLEGAL_PRIORITY: c_int = taskErrorBase + 0x0068;
745
746
// FIXME(vxworks): could also be useful for TASK_DESC type
747
pub const VX_TASK_NAME_LENGTH: c_int = 31;
748
+pub const VX_TASK_RENAME_LENGTH: c_int = 16;
749
750
// semLibCommon.h
751
pub const S_semLib_INVALID_STATE: c_int = semErrorBase + 0x0065;
@@ -806,6 +807,9 @@ pub const S_IWOTH: c_int = 0o0002;
806
807
pub const S_IXOTH: c_int = 0o0001;
808
pub const S_IRWXO: c_int = 0o0007;
809
810
+pub const UTIME_OMIT: c_long = 0x3ffffffe;
811
+pub const UTIME_NOW: c_long = 0x3fffffff;
812
+
813
// socket.h
814
pub const SOL_SOCKET: c_int = 0xffff;
815
pub const SOMAXCONN: c_int = 128;
0 commit comments