9 lines
207 B
C
9 lines
207 B
C
|
#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 */
|