Xyris  0.5
errno.hpp File Reference
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Enumerations

enum  KernelError {
  LockTaken = -4, BufferFull = -3, InvalidValue = -2, GenericError = -1,
  OK = 0
}
 

Variables

KernelError errno
 

Detailed Description

Kernel error definitions.

Author
Keeton Feavel (keeto.nosp@m.nfea.nosp@m.vel@c.nosp@m.edar.nosp@m.ville.nosp@m..edu)
Version
0.3
Date
2020-08-08

Definition in file errno.hpp.

Enumeration Type Documentation

◆ KernelError

Kernel error codes. All values other than OK should be negative.

Enumerator
LockTaken 
BufferFull 
InvalidValue 
GenericError 
OK 

Definition at line 17 of file errno.hpp.

17  {
18  LockTaken = -4,
19  BufferFull = -3,
20  InvalidValue = -2,
21  GenericError = -1,
22  OK = 0,
23 };

Variable Documentation

◆ errno

KernelError errno

Definition at line 15 of file errno.cpp.

BufferFull
@ BufferFull
Definition: errno.hpp:19
OK
@ OK
Definition: errno.hpp:22
LockTaken
@ LockTaken
Definition: errno.hpp:18
GenericError
@ GenericError
Definition: errno.hpp:21
InvalidValue
@ InvalidValue
Definition: errno.hpp:20