summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/futimens.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* futimens.c, utime.c: Remove unnecessary include of <sys/stat.h>.Joel Sherrill2021-06-091-1/+0
|
* Change filesystem utime_h handler to utimens_hRyan Long2021-05-281-1/+1
| | | | | | | Also updated licenses. Closes #4400 Updates #3899
* libcsupport: Added futimens() and utimensat()Ryan Long2021-05-281-0/+87
Created futimens.c and utimensat.c to add support for the POSIX methods futimens() and utimensat(). utime() and utimes() are considered obsolote by POSIX, but RTEMS will continue to support them. Closes #4396