PERFORCE change 122070 for review

Roman Divacky rdivacky at FreeBSD.org
Thu Jun 21 09:13:54 UTC 2007


http://perforce.freebsd.org/chv.cgi?CH=122070

Change 122070 by rdivacky at rdivacky_witten on 2007/06/21 09:13:21

	Introduce stat.h part of the POSIX Extended API:
	
	o	add fstatat, mkdirat, mknodat, mkfifoat prototypes

Affected files ...

.. //depot/projects/soc2007/rdivacky/linux_at/sys/sys/stat.h#2 edit

Differences ...

==== //depot/projects/soc2007/rdivacky/linux_at/sys/sys/stat.h#2 (text+ko) ====

@@ -338,6 +338,10 @@
 #endif
 int	stat(const char * __restrict, struct stat * __restrict);
 mode_t	umask(mode_t);
+int	fstatat(int, const char *, struct stat *, int);
+int	mkdirat(int, const char *, mode_t);
+int	mkfifoat(int, const char *, mode_t);
+int	mknodat(int, const char *, mode_t, dev_t);
 __END_DECLS
 #endif /* !_KERNEL */
 


More information about the p4-projects mailing list