The function setLastAccessAndModificationTime() uses function futimens() or futimes() by default.
Both functions are not available in z/OS, therefore functionality is implemented using __fchattr() on z/OS.
Details
Details
Diff Detail
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
llvm/lib/Support/Unix/Path.inc | ||
---|---|---|
802 | Minor nit: As a function returning int (with 0 representing success), I would suggest using != 0 to check for the error condition. |
Minor nit: As a function returning int (with 0 representing success), I would suggest using != 0 to check for the error condition.