From 00c5f457b7616cf67a5b416fa3b06ce427ae09ec Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Sun, 27 Dec 2015 21:00:40 +0100 Subject: doc MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- include/sys/stat.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'include/sys/stat.h') diff --git a/include/sys/stat.h b/include/sys/stat.h index 58b0514..878a414 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -24,18 +24,32 @@ #if defined(__SLIBC_SOURCE) /** + * Everyone, or anyone, have read permission. + * * @since Always. */ # define S_IRALL (S_IRUSR | S_IRGRP | S_IROTH) + /** + * Everyone, or anyone, have write permission. + * * @since Always. */ # define S_IWALL (S_IWUSR | S_IWGRP | S_IWOTH) + /** + * Everyone, or anyone, have execute permission. + * Execute permission for directories means to + * be able to list files in the directory. + * * @since Always. */ # define S_IXALL (S_IXUSR | S_IXGRP | S_IXOTH) + /** + * Set-UID bit, set-GID bit, and/or sticky bit + * is set. + * * @since Always. */ # define S_ISALL (S_ISUID | S_ISGID | S_ISVTX) -- cgit v1.2.3-70-g09d2