mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-06-03 08:08:39 -04:00
kern: fix KLinkedList dtor
This commit is contained in:
parent
71d266f867
commit
52c89a76b2
2 changed files with 14 additions and 4 deletions
|
@ -192,10 +192,10 @@ namespace ams::svc {
|
|||
};
|
||||
|
||||
enum CodeMemoryOperation : u32 {
|
||||
CodeMemoryOperation_MapOwner = 0,
|
||||
CodeMemoryOperation_MapSlave = 1,
|
||||
CodeMemoryOperation_UnmapOwner = 2,
|
||||
CodeMemoryOperation_UnmapSlave = 3,
|
||||
CodeMemoryOperation_Map = 0,
|
||||
CodeMemoryOperation_MapToOwner = 1,
|
||||
CodeMemoryOperation_Unmap = 2,
|
||||
CodeMemoryOperation_UnmapFromOwner = 3,
|
||||
};
|
||||
|
||||
/* Synchronization types. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue