12 lines
149 B
C
12 lines
149 B
C
#ifndef KERNEL_FLAGS_H_
|
|
#define KERNEL_FLAGS_H_
|
|
|
|
#include <stdint.h>
|
|
|
|
typedef enum {
|
|
S_NORMAL = 0x00u,
|
|
S_NOBLOCK = 0x01u,
|
|
} mango_flags_t;
|
|
|
|
#endif
|