Module Name: src
Committed By: pooka
Date: Wed May 15 21:39:30 UTC 2013
Modified Files:
src/sys/rump/kern/lib/libsys_cygwin: syscalls.master
src/sys/rump/kern/lib/libsys_sunos: syscalls.master
Log Message:
Support utimes/futimes. Makes at least fsu_touch work on these platforms.
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/sys/rump/kern/lib/libsys_cygwin/syscalls.master
cvs rdiff -u -r1.1 -r1.2 src/sys/rump/kern/lib/libsys_sunos/syscalls.master
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/rump/kern/lib/libsys_cygwin/syscalls.master
diff -u src/sys/rump/kern/lib/libsys_cygwin/syscalls.master:1.1 src/sys/rump/kern/lib/libsys_cygwin/syscalls.master:1.2
--- src/sys/rump/kern/lib/libsys_cygwin/syscalls.master:1.1 Wed Apr 10 16:44:54 2013
+++ src/sys/rump/kern/lib/libsys_cygwin/syscalls.master Wed May 15 21:39:30 2013
@@ -1,4 +1,4 @@
- $NetBSD: syscalls.master,v 1.1 2013/04/10 16:44:54 pooka Exp $
+ $NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -508,10 +508,12 @@
417 UNIMPL select
418 UNIMPL gettimeofday
419 UNIMPL settimeofday
-420 UNIMPL utimes
+420 NOARGS { int|compat_50_sys||utimes(char *path, \
+ struct timeval50 *tptr); }
421 UNIMPL adjtime
422 UNIMPL lfs_segwait
-423 UNIMPL futimes
+423 NOARGS { int|compat_50_sys||futimes(int fd, \
+ struct timeval50 *tptr); }
424 UNIMPL lutimes
425 UNIMPL setitimer
426 UNIMPL getitimer
Index: src/sys/rump/kern/lib/libsys_sunos/syscalls.master
diff -u src/sys/rump/kern/lib/libsys_sunos/syscalls.master:1.1 src/sys/rump/kern/lib/libsys_sunos/syscalls.master:1.2
--- src/sys/rump/kern/lib/libsys_sunos/syscalls.master:1.1 Tue Apr 9 13:08:33 2013
+++ src/sys/rump/kern/lib/libsys_sunos/syscalls.master Wed May 15 21:39:30 2013
@@ -1,4 +1,4 @@
- $NetBSD: syscalls.master,v 1.1 2013/04/09 13:08:33 pooka Exp $
+ $NetBSD: syscalls.master,v 1.2 2013/05/15 21:39:30 pooka Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -511,10 +511,12 @@
417 UNIMPL select
418 UNIMPL gettimeofday
419 UNIMPL settimeofday
-420 UNIMPL utimes
+420 NOARGS { int|compat_50_sys||utimes(char *path, \
+ struct timeval50 *tptr); }
421 UNIMPL adjtime
422 UNIMPL lfs_segwait
-423 UNIMPL futimes
+423 NOARGS { int|compat_50_sys||futimes(int fd, \
+ struct timeval50 *tptr); }
424 UNIMPL lutimes
425 UNIMPL setitimer
426 UNIMPL getitimer