Files
pintos_22/src/threads/flags.h
2024-10-01 23:37:39 +01:00

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 */