From owner-p4-projects@FreeBSD.ORG Thu Jun 21 10:52:43 2007 Return-Path: X-Original-To: p4-projects@freebsd.org Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id D2F8416A421; Thu, 21 Jun 2007 10:52:42 +0000 (UTC) X-Original-To: perforce@FreeBSD.org Delivered-To: perforce@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 98FE116A400 for ; Thu, 21 Jun 2007 10:52:42 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 8AABB13C447 for ; Thu, 21 Jun 2007 10:52:42 +0000 (UTC) (envelope-from rdivacky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5LAqgib034883 for ; Thu, 21 Jun 2007 10:52:42 GMT (envelope-from rdivacky@FreeBSD.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5LAqg3x034879 for perforce@freebsd.org; Thu, 21 Jun 2007 10:52:42 GMT (envelope-from rdivacky@FreeBSD.org) Date: Thu, 21 Jun 2007 10:52:42 GMT Message-Id: <200706211052.l5LAqg3x034879@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to rdivacky@FreeBSD.org using -f From: Roman Divacky To: Perforce Change Reviews Cc: Subject: PERFORCE change 122084 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Jun 2007 10:52:43 -0000 http://perforce.freebsd.org/chv.cgi?CH=122084 Change 122084 by rdivacky@rdivacky_witten on 2007/06/21 10:51:40 Introduce include/* part of POSIX Extended API o add prototypes for faccessat, fchmodat, fchownat, fexecve, linkat, readlinkat, symlinkat, unlinkat I changed return value of readlinkat at from ssizt_t to ssize_t because I think its a typo and I changed "int flag" to just "int" in linkat prototype. Affected files ... .. //depot/projects/soc2007/rdivacky/linux_at/include/stdio.h#2 edit .. //depot/projects/soc2007/rdivacky/linux_at/include/unistd.h#2 edit Differences ... ==== //depot/projects/soc2007/rdivacky/linux_at/include/stdio.h#2 (text+ko) ==== @@ -447,5 +447,6 @@ #define putchar_unlocked(x) putc_unlocked(x, stdout) #endif +int renameat(int, const char *, int, const char *); __END_DECLS #endif /* !_STDIO_H_ */ ==== //depot/projects/soc2007/rdivacky/linux_at/include/unistd.h#2 (text+ko) ==== @@ -558,6 +558,15 @@ extern int optreset; /* getopt(3) external variable */ #endif #endif /* __BSD_VISIBLE */ + +int faccessat(int, const char *, int); +int fchmodat(int, const char *, mode_t, int); +int fchownat(int, const char *, uid_t, gid_t, int); +int fexecve(int, char *const [], char *const []); +int linkat(int, const char *, int, const char *, int); +ssize_t readlinkat(int, const char *, char *, size_t); +int symlinkat(const char *, int, const char *); +int unlinkat(int, const char *, int); __END_DECLS #endif /* !_UNISTD_H_ */