summaryrefslogtreecommitdiff
path: root/include/iprt/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/iprt/fs.h')
-rw-r--r--include/iprt/fs.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/iprt/fs.h b/include/iprt/fs.h
index 6ad2d2c5..3055bf4b 100644
--- a/include/iprt/fs.h
+++ b/include/iprt/fs.h
@@ -3,7 +3,7 @@
*/
/*
- * Copyright (C) 2006-2007 Oracle Corporation
+ * Copyright (C) 2006-2013 Oracle Corporation
*
* This file is part of VirtualBox Open Source Edition (OSE), as
* available from http://www.virtualbox.org. This file is free software;
@@ -93,6 +93,11 @@ RT_C_DECLS_BEGIN
/** Other executable (S_IXOTH). */
#define RTFS_UNIX_IXOTH 0000001U
+/** All UNIX access permission bits (0777). */
+#define RTFS_UNIX_ALL_ACCESS_PERMS 0000777U
+/** All UNIX permission bits, including set id and sticky bits. */
+#define RTFS_UNIX_ALL_PERMS 0007777U
+
/** Named pipe (fifo) (S_IFIFO). */
#define RTFS_TYPE_FIFO 0010000U
/** Character device (S_IFCHR). */
@@ -216,6 +221,7 @@ typedef enum RTFSTYPE
RTFSTYPE_SYSFS,
RTFSTYPE_PROC,
RTFSTYPE_OCFS2,
+ RTFSTYPE_BTRFS,
/* Windows: */
/** New Technology File System. */