summaryrefslogtreecommitdiffstats
path: root/src/threads/flags.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/threads/flags.h')
-rw-r--r--src/threads/flags.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/threads/flags.h b/src/threads/flags.h
new file mode 100644
index 0000000..5654ac7
--- /dev/null
+++ b/src/threads/flags.h
@@ -0,0 +1,8 @@
+#ifndef THREADS_FLAGS_H
+#define THREADS_FLAGS_H
+
+/* EFLAGS Register. */
+#define FLAG_MBS 0x00000002 /* Must be set. */
+#define FLAG_IF 0x00000200 /* Interrupt Flag. */
+
+#endif /* threads/flags.h */