mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 08:08:50 +00:00
indent with tabs not spaces
This commit is contained in:
@@ -488,9 +488,9 @@ VM_FLAGS_SUPERPAGE_NONE :: VM_Flags{} /* no superpages, if all bits are 0 */
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
VM_Prot :: enum vm_prot_t {
|
VM_Prot :: enum vm_prot_t {
|
||||||
Read,
|
Read,
|
||||||
Write,
|
Write,
|
||||||
Execute,
|
Execute,
|
||||||
}
|
}
|
||||||
|
|
||||||
VM_Prot_Flags :: distinct bit_set[VM_Prot; vm_prot_t]
|
VM_Prot_Flags :: distinct bit_set[VM_Prot; vm_prot_t]
|
||||||
@@ -504,10 +504,10 @@ VM_PROT_ALL :: VM_Prot_Flags{.Read, .Write, .Execute}
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
VM_Inherit :: enum vm_inherit_t {
|
VM_Inherit :: enum vm_inherit_t {
|
||||||
Share,
|
Share,
|
||||||
Copy,
|
Copy,
|
||||||
None,
|
None,
|
||||||
Donate_Copy,
|
Donate_Copy,
|
||||||
}
|
}
|
||||||
|
|
||||||
VM_INHERIT_DEFAULT :: VM_Inherit.Copy
|
VM_INHERIT_DEFAULT :: VM_Inherit.Copy
|
||||||
|
|||||||
Reference in New Issue
Block a user