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.
2 parents 0140785 + bd5a0d3 commit e1d85d5Copy full SHA for e1d85d5
libc-test/semver/solarish.txt
@@ -17,6 +17,7 @@ LIO_WRITE
17
PIPE_BUF
18
SIGEV_PORT
19
_POSIX_VDISABLE
20
+_ST_FSTYPSZ
21
aio_cancel
22
aio_error
23
aio_fsync
src/unix/solarish/mod.rs
@@ -344,7 +344,7 @@ s! {
344
pub st_ctime_nsec: c_long,
345
pub st_blksize: crate::blksize_t,
346
pub st_blocks: crate::blkcnt_t,
347
- __unused: [c_char; 16],
+ pub st_fstype: [c_char; _ST_FSTYPSZ as usize],
348
}
349
350
pub struct termios {
@@ -2029,6 +2029,8 @@ pub const _SC_XOPEN_STREAMS: c_int = 761;
2029
pub const _SC_IPV6: c_int = 762;
2030
pub const _SC_RAW_SOCKETS: c_int = 763;
2031
2032
+pub const _ST_FSTYPSZ: c_int = 16;
2033
+
2034
pub const _MUTEX_MAGIC: u16 = 0x4d58; // MX
2035
pub const _COND_MAGIC: u16 = 0x4356; // CV
2036
pub const _RWL_MAGIC: u16 = 0x5257; // RW
0 commit comments