Fri Jan 10 20:10:24 2014 UTC ()
Add NetBSD futimes/lutimes syscalls which does not exists on Linux.


(njoly)
diff -r1.11 -r1.12 src/sys/rump/kern/lib/libsys_linux/syscalls.master

cvs diff -r1.11 -r1.12 src/sys/rump/kern/lib/libsys_linux/syscalls.master (expand / switch to unified diff)

--- src/sys/rump/kern/lib/libsys_linux/syscalls.master 2014/01/10 19:44:47 1.11
+++ src/sys/rump/kern/lib/libsys_linux/syscalls.master 2014/01/10 20:10:23 1.12
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1 $NetBSD: syscalls.master,v 1.11 2014/01/10 19:44:47 njoly Exp $ 1 $NetBSD: syscalls.master,v 1.12 2014/01/10 20:10:23 njoly Exp $
2 2
3; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 3; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
4 4
5; NetBSD system call name/number "master" file. 5; NetBSD system call name/number "master" file.
6; (See syscalls.conf to see what it is processed into.) 6; (See syscalls.conf to see what it is processed into.)
7; 7;
8; Fields: number type [type-dependent ...] 8; Fields: number type [type-dependent ...]
9; number system call number, must be in order 9; number system call number, must be in order
10; type one of NODEF, UNIMPL, or NOARGS 10; type one of NODEF, UNIMPL, or NOARGS
11; 11;
12; types: 12; types:
13; NODEF always included 13; NODEF always included
14; UNIMPL unimplemented, not included in system 14; UNIMPL unimplemented, not included in system
@@ -538,28 +538,30 @@ @@ -538,28 +538,30 @@
538413 UNIMPL pset_destroy 538413 UNIMPL pset_destroy
539414 UNIMPL pset_assign 539414 UNIMPL pset_assign
540415 UNIMPL _pset_bind 540415 UNIMPL _pset_bind
541416 UNIMPL fadvise 541416 UNIMPL fadvise
542417 NOARGS { int|linux_sys||select(int nd, \ 542417 NOARGS { int|linux_sys||select(int nd, \
543 fd_set *in, fd_set *ou, fd_set *ex, \ 543 fd_set *in, fd_set *ou, fd_set *ex, \
544 struct timeval50 *tv); } 544 struct timeval50 *tv); }
545418 UNIMPL gettimeofday 545418 UNIMPL gettimeofday
546419 UNIMPL settimeofday 546419 UNIMPL settimeofday
547420 NOARGS { int|linux_sys||utimes(const char *path, \ 547420 NOARGS { int|linux_sys||utimes(const char *path, \
548 struct linux_timeval *tv); } 548 struct linux_timeval *tv); }
549421 UNIMPL adjtime 549421 UNIMPL adjtime
550422 UNIMPL lfs_segwait 550422 UNIMPL lfs_segwait
551423 UNIMPL futimes 551423 NOARGS { int|sys|50|futimes(int fd, \
552424 UNIMPL lutimes 552 const struct timeval *tptr); }
 553424 NOARGS { int|sys|50|lutimes(const char *path, \
 554 const struct timeval *tptr); }
553425 UNIMPL setitimer 555425 UNIMPL setitimer
554426 UNIMPL getitimer 556426 UNIMPL getitimer
555427 UNIMPL clock_gettime 557427 UNIMPL clock_gettime
556428 UNIMPL clock_settime 558428 UNIMPL clock_settime
557429 UNIMPL clock_getres 559429 UNIMPL clock_getres
558430 UNIMPL nanosleep 560430 UNIMPL nanosleep
559431 UNIMPL __sigtimedwait 561431 UNIMPL __sigtimedwait
560432 UNIMPL mq_timedsend 562432 UNIMPL mq_timedsend
561433 UNIMPL mq_timedreceive 563433 UNIMPL mq_timedreceive
562434 UNIMPL _lwp_park 564434 UNIMPL _lwp_park
563435 UNIMPL kevent 565435 UNIMPL kevent
564436 UNIMPL pselect 566436 UNIMPL pselect
565437 NOARGS { int|linux_sys||ppoll(struct pollfd *fds, \ 567437 NOARGS { int|linux_sys||ppoll(struct pollfd *fds, \