Skip to content

Commit 88f6587

Browse files
committed
Auto merge of #1607 - jclulow:futimens, r=gnzlbg
expose futimens() for illumos systems illumos has an implementation of `futimens()` which we should expose. I'm working on a broader set of [fixes for illumos](master...jclulow:illumos_fixes) in general, but that's going to take a lot more work to be ready so the test suite doesn't currently seem to function.
2 parents 5130285 + 223e7d3 commit 88f6587

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/unix/solarish/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -2157,6 +2157,7 @@ extern "C" {
21572157
path: *const ::c_char,
21582158
times: *const ::timeval,
21592159
) -> ::c_int;
2160+
pub fn futimens(dirfd: ::c_int, times: *const ::timespec) -> ::c_int;
21602161
pub fn utimensat(
21612162
dirfd: ::c_int,
21622163
path: *const ::c_char,

0 commit comments

Comments
 (0)