From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2155) id 7B25B395C04B; Wed, 2 Dec 2020 15:16:23 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 7B25B395C04B Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Corinna Vinschen To: cygwin-cvs@sourceware.org Subject: [newlib-cygwin] Cygwin: path.h: add comments to briefly explain path_types X-Act-Checkin: newlib-cygwin X-Git-Author: Corinna Vinschen X-Git-Refname: refs/heads/master X-Git-Oldrev: 702bec7bc9e903500dcfe9e5a572c35b8bd0fa46 X-Git-Newrev: e9bc4cccefbdc989bafb4b6c58c8892eb07ce277 Message-Id: <20201202151623.7B25B395C04B@sourceware.org> Date: Wed, 2 Dec 2020 15:16:23 +0000 (GMT) X-BeenThere: cygwin-cvs@cygwin.com X-Mailman-Version: 2.1.29 Precedence: list List-Id: Cygwin core component git logs List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Dec 2020 15:16:23 -0000 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=e9bc4cccefbdc989bafb4b6c58c8892eb07ce277 commit e9bc4cccefbdc989bafb4b6c58c8892eb07ce277 Author: Corinna Vinschen Date: Wed Dec 2 15:57:39 2020 +0100 Cygwin: path.h: add comments to briefly explain path_types Signed-off-by: Corinna Vinschen Diff: --- winsup/cygwin/path.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/winsup/cygwin/path.h b/winsup/cygwin/path.h index 0b3e72fc1..45a047ad3 100644 --- a/winsup/cygwin/path.h +++ b/winsup/cygwin/path.h @@ -66,11 +66,11 @@ enum path_types { PATH_CTTY = _BIT ( 0), /* could later be used as ctty */ PATH_OPEN = _BIT ( 1), /* use open semantics */ - PATH_LNK = _BIT ( 2), - PATH_REP = _BIT ( 3), - PATH_SYMLINK = _BIT ( 4), - PATH_SOCKET = _BIT ( 5), - PATH_RESOLVE_PROCFD = _BIT ( 6), + PATH_LNK = _BIT ( 2), /* *.lnk-type symlink */ + PATH_REP = _BIT ( 3), /* reparse point known to Cygwin */ + PATH_SYMLINK = _BIT ( 4), /* symlink understood by Cygwin */ + PATH_SOCKET = _BIT ( 5), /* AF_UNIX socket file */ + PATH_RESOLVE_PROCFD = _BIT ( 6), /* fd symlink via /proc */ PATH_DONT_USE = _BIT (31) /* conversion to signed happens. */ };