summaryrefslogtreecommitdiffstats
path: root/posix-compliance/RTEMS-Standards-Compliance-v4a.csv (follow)
Commit message (Collapse)AuthorAgeFilesLines
* posix-compliance: Change utimes() from sys/times.h to sys/time.hMarçal Comajoan Cara2018-12-091-0/+1356
In the RTEMS POSIX 1003.1 Compliance Guide it says: The following methods and variables in <sys/times.h> are supported: - times() - utimes() But according to the official POSIX Specifications http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_times.h.html, <sys/times.h> only declares times(), and utimes() is decleared by <sys/time.h> (notice that it's time, not times) according to http://pubs.opengroup.org/onlinepubs/9699919799/functions/utimensat.html and http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_time.h.html. This patch fixes this error. This work was part of GCI 2018.