Date: Sun, 3 Jun 2007 11:03:00 GMT From: Roman Divacky <rdivacky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 120831 for review Message-ID: <200706031103.l53B30vi022254@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=120831 Change 120831 by rdivacky@rdivacky_witten on 2007/06/03 11:02:30 Add prototypes of kern_[l]statat to syscallsubr.h Affected files ... .. //depot/projects/soc2007/rdivacky/linux_at/sys/sys/syscallsubr.h#3 edit Differences ... ==== //depot/projects/soc2007/rdivacky/linux_at/sys/sys/syscallsubr.h#3 (text+ko) ==== @@ -107,6 +107,8 @@ enum uio_seg segflg); int kern_lstat(struct thread *td, char *path, enum uio_seg pathseg, struct stat *sbp); +int kern_lstatat(struct thread *td, char *path, enum uio_seg pathseg, + struct stat *sbp, int dfd); int kern_lutimes(struct thread *td, char *path, enum uio_seg pathseg, struct timeval *tptr, enum uio_seg tptrseg); int kern_mkdir(struct thread *td, char *path, enum uio_seg segflg, @@ -168,6 +170,8 @@ int kern_sigsuspend(struct thread *td, sigset_t mask); int kern_stat(struct thread *td, char *path, enum uio_seg pathseg, struct stat *sbp); +int kern_statat(struct thread *td, char *path, enum uio_seg pathseg, + struct stat *sbp, int dfd); int kern_statfs(struct thread *td, char *path, enum uio_seg pathseg, struct statfs *buf); int kern_symlink(struct thread *td, char *path, char *link,
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706031103.l53B30vi022254>