blob: 5654ac789201e8c70a5c39c84c64aa1e02d520d1 (
plain) (
blame)
1
2
3
4
5
6
7
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 */
|