tmp/tmpxda3hrx4/{from.md → to.md}
RENAMED
|
@@ -1,19 +1,19 @@
|
|
| 1 |
#### Enum class `perm_options` <a id="fs.enum.perm.opts">[[fs.enum.perm.opts]]</a>
|
| 2 |
|
| 3 |
-
The `enum class` type `perm_options` is a bitmask type
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
[[
|
| 7 |
-
|
| 8 |
-
`
|
| 9 |
|
| 10 |
-
**Table: Enum class `perm_options`** <a id="
|
| 11 |
|
| 12 |
| Name | Meaning |
|
| 13 |
-
| ---------- | ----------------------------------------------------------------------------------------------------------------------------------------------- |
|
| 14 |
| `replace` | `permissions` shall replace the file's permission bits with `perm` |
|
| 15 |
-
| `add` | `permissions` shall replace the file's permission bits with the bitwise OR of `perm` and the file's current permission bits. |
|
| 16 |
-
| `remove` | `permissions` shall replace the file's permission bits with the bitwise AND of the complement of `perm` and the file's current permission bits. |
|
| 17 |
| `nofollow` | `permissions` shall change the permissions of a symbolic link itself rather than the permissions of the file the link resolves to. |
|
| 18 |
|
| 19 |
|
|
|
|
| 1 |
#### Enum class `perm_options` <a id="fs.enum.perm.opts">[[fs.enum.perm.opts]]</a>
|
| 2 |
|
| 3 |
+
The `enum class` type `perm_options` is a bitmask type [[bitmask.types]]
|
| 4 |
+
that specifies bitmask constants used to control the semantics of
|
| 5 |
+
permissions operations, with the meanings listed in
|
| 6 |
+
[[fs.enum.perm.opts]]. The bitmask constants are bitmask elements. In
|
| 7 |
+
[[fs.enum.perm.opts]] `perm` denotes a value of type `perms` passed to
|
| 8 |
+
`permissions`.
|
| 9 |
|
| 10 |
+
**Table: Enum class `perm_options`** <a id="fs.enum.perm.opts">[fs.enum.perm.opts]</a>
|
| 11 |
|
| 12 |
| Name | Meaning |
|
| 13 |
+
| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------- |
|
| 14 |
| `replace` | `permissions` shall replace the file's permission bits with `perm` |
|
| 15 |
+
| `add` | `permissions` shall replace the file's permission bits with the bitwise \logop{OR} of `perm` and the file's current permission bits. |
|
| 16 |
+
| `remove` | `permissions` shall replace the file's permission bits with the bitwise \logop{AND} of the complement of `perm` and the file's current permission bits. |
|
| 17 |
| `nofollow` | `permissions` shall change the permissions of a symbolic link itself rather than the permissions of the file the link resolves to. |
|
| 18 |
|
| 19 |
|