Skip to content
This repository was archived by the owner on Jul 21, 2025. It is now read-only.

Commit cdf6ac3

Browse files
authored
Update process.h
Added IDLE state to proc_state_t enum
1 parent ada9d59 commit cdf6ac3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kernel/core/process.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ typedef enum {
1313
RUNNING,
1414
READY,
1515
TERMINATED,
16-
BLOCKED
16+
BLOCKED,
17+
IDLE
1718
} proc_state_t;
1819

1920
typedef struct {

0 commit comments

Comments
 (0)