Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 21 Jun 2007 09:13:53 GMT
From:      Roman Divacky <rdivacky@FreeBSD.org>
To:        Perforce Change Reviews <perforce@FreeBSD.org>
Subject:   PERFORCE change 122070 for review
Message-ID:  <200706210913.l5L9DrQG012598@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=122070

Change 122070 by rdivacky@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 */
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200706210913.l5L9DrQG012598>