Changeset 1972 for trunk/src/emx/include
- Timestamp:
- May 6, 2005, 5:36:47 AM (20 years ago)
- Location:
- trunk/src/emx/include
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/InnoTekLIBC/backend.h
-
Property cvs2svn:cvs-rev
changed from
1.21
to1.22
r1971 r1972 289 289 290 290 /** 291 * Sets the file access mode of a file.291 * Sets the file access mode of a symlink. 292 292 * 293 293 * @returns 0 on success. … … 297 297 */ 298 298 int __libc_Back_fsSymlinkModeSet(const char *pszPath, mode_t Mode); 299 300 /** 301 * Sets the file times of a symlink. 302 * 303 * @returns 0 on success. 304 * @returns Negative error code (errno.h) on failure. 305 * @param pszPath The path to the file to set the mode of. 306 * @param paTimes Two timevalue structures. If NULL the current time is used. 307 */ 308 int __libc_Back_fsSymlinkTimesSet(const char *pszPath, const struct timeval *paTimes); 299 309 300 310 /** … … 338 348 */ 339 349 int __libc_Back_fsFileModeSetFH(int fh, mode_t Mode); 350 351 /** 352 * Sets the file the times of a file. 353 * 354 * @returns 0 on success. 355 * @returns Negative error code (errno.h) on failure. 356 * @param pszPath The path to the file to set the times of. 357 * @param paTimes Two timevalue structures. If NULL the current time is used. 358 */ 359 int __libc_Back_fsFileTimesSet(const char *pszPath, const struct timeval *paTimes); 360 361 /** 362 * Sets the file the times of a file by filehandle. 363 * 364 * @returns 0 on success. 365 * @returns Negative error code (errno.h) on failure. 366 * @param fh Handle to file. 367 * @param paTimes Two timevalue structures. If NULL the current time is used. 368 */ 369 int __libc_Back_fsFileTimesSetFH(int fh, const struct timeval *paTimes); 340 370 341 371 /** -
Property cvs2svn:cvs-rev
changed from
-
trunk/src/emx/include/sys/time.h
-
Property cvs2svn:cvs-rev
changed from
1.9
to1.10
r1971 r1972 41 41 * @changed IBM TCP paranoia. 42 42 * @changed Added hrtime_t and gethrtime from SUN/HP/RTLinux. 43 * @todo Implement futimes() and lutimes().44 43 */ 45 44 … … 326 325 __BEGIN_DECLS 327 326 /** @todo int adjtime(const struct timeval *, struct timeval *); */ 328 /** @todo int futimes(int, const struct timeval *); */ 327 int futimes(int, const struct timeval *); 329 328 int getitimer(int, struct itimerval *); 330 329 int gettimeofday(struct timeval *, struct timezone *); 331 /** @todo int lutimes(const char *, const struct timeval *); */ 330 int lutimes(const char *, const struct timeval *); 332 331 int setitimer(int, const struct itimerval *, struct itimerval *); 333 332 int settimeofday(const struct timeval *, const struct timezone *); -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.