mirror of
https://github.com/switchbrew/libnx.git
synced 2025-07-04 18:42:15 +02:00
Fix enum member comments.
This commit is contained in:
parent
2041cf2282
commit
e8ef6c4ed1
@ -107,16 +107,16 @@ typedef enum {
|
|||||||
|
|
||||||
/// Limitable Resources.
|
/// Limitable Resources.
|
||||||
typedef enum {
|
typedef enum {
|
||||||
LimitableResource_Memory=0, ///<How much memory can a process map?
|
LimitableResource_Memory=0, ///<How much memory can a process map.
|
||||||
LimitableResource_Threads=1, ///<How many threads can a process spawn?
|
LimitableResource_Threads=1, ///<How many threads can a process spawn.
|
||||||
LimitableResource_Events=2, ///<How many events can a process have?
|
LimitableResource_Events=2, ///<How many events can a process have.
|
||||||
LimitableResource_TransferMemories=3, ///<How many transfer memories can a process make?
|
LimitableResource_TransferMemories=3, ///<How many transfer memories can a process make.
|
||||||
LimitableResource_Sessions=4, ///<How many sessions can a process own?
|
LimitableResource_Sessions=4, ///<How many sessions can a process own.
|
||||||
} LimitableResource;
|
} LimitableResource;
|
||||||
|
|
||||||
/// Process Information.
|
/// Process Information.
|
||||||
typedef enum {
|
typedef enum {
|
||||||
ProcessInfoType_ProcessState=0, ///<What state is a process in?
|
ProcessInfoType_ProcessState=0, ///<What state is a process in.
|
||||||
} ProcessInfoType;
|
} ProcessInfoType;
|
||||||
|
|
||||||
/// Process States.
|
/// Process States.
|
||||||
|
Loading…
Reference in New Issue
Block a user