Initial commit
This commit is contained in:
commit
ef80f65fbf
136 changed files with 13728 additions and 0 deletions
17
include/error.h
Normal file
17
include/error.h
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
#ifndef ERROR_H
|
||||
#define ERROR_H
|
||||
|
||||
typedef enum {
|
||||
/* Success */
|
||||
KERNEL_STATUS_SUCCESS,
|
||||
|
||||
KERNEL_MUTEX_ACQUIRED,
|
||||
KERNEL_MUTEX_LOCKED,
|
||||
|
||||
/* General error */
|
||||
KERNEL_STATUS_ERROR,
|
||||
} kstatus;
|
||||
|
||||
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue