summaryrefslogtreecommitdiff
path: root/vm/vm_inherit.h
diff options
context:
space:
mode:
Diffstat (limited to 'vm/vm_inherit.h')
-rw-r--r--vm/vm_inherit.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/vm/vm_inherit.h b/vm/vm_inherit.h
index b50d490d..0ef4616c 100644
--- a/vm/vm_inherit.h
+++ b/vm/vm_inherit.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2011, 2012 Richard Braun.
+ * Copyright (c) 2011, 2012, 2013 Richard Braun.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -19,11 +19,11 @@
#define _VM_VM_INHERIT_H
/*
- * Inheritance flags.
+ * Inheritance values.
*/
-#define VM_INHERIT_SHARE 0
-#define VM_INHERIT_COPY 1
-#define VM_INHERIT_NONE 2
+#define VM_INHERIT_NONE 0
+#define VM_INHERIT_SHARE 1
+#define VM_INHERIT_COPY 2
#define VM_INHERIT_DEFAULT VM_INHERIT_COPY
#endif /* _VM_VM_INHERIT_H */