diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-07-03 21:17:35 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-07-03 21:20:13 +0200 |
commit | 27f699ef0c8c2dce0f1dff19eef25f02e3da397e (patch) | |
tree | 52f95be1d05ba2a621d3bb8ac9129341f8d9973b /Kernel/FileSystem/FileSystem.cpp | |
parent | c4c4bbc5ba5119e9ccc8ded948b26e7c4851a909 (diff) | |
download | serenity-27f699ef0c8c2dce0f1dff19eef25f02e3da397e.zip |
AK: Rename the common integer typedefs to make it obvious what they are.
These types can be picked up by including <AK/Types.h>:
* u8, u16, u32, u64 (unsigned)
* i8, i16, i32, i64 (signed)
Diffstat (limited to 'Kernel/FileSystem/FileSystem.cpp')
-rw-r--r-- | Kernel/FileSystem/FileSystem.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Kernel/FileSystem/FileSystem.cpp b/Kernel/FileSystem/FileSystem.cpp index 1a8753e38a..d67bbb6821 100644 --- a/Kernel/FileSystem/FileSystem.cpp +++ b/Kernel/FileSystem/FileSystem.cpp @@ -7,13 +7,13 @@ #include <Kernel/VM/MemoryManager.h> #include <LibC/errno_numbers.h> -static dword s_lastFileSystemID; -static HashMap<dword, FS*>* s_fs_map; +static u32 s_lastFileSystemID; +static HashMap<u32, FS*>* s_fs_map; -static HashMap<dword, FS*>& all_fses() +static HashMap<u32, FS*>& all_fses() { if (!s_fs_map) - s_fs_map = new HashMap<dword, FS*>(); + s_fs_map = new HashMap<u32, FS*>(); return *s_fs_map; } @@ -28,7 +28,7 @@ FS::~FS() all_fses().remove(m_fsid); } -FS* FS::from_fsid(dword id) +FS* FS::from_fsid(u32 id) { auto it = all_fses().find(id); if (it != all_fses().end()) @@ -36,7 +36,7 @@ FS* FS::from_fsid(dword id) return nullptr; } -FS::DirectoryEntry::DirectoryEntry(const char* n, InodeIdentifier i, byte ft) +FS::DirectoryEntry::DirectoryEntry(const char* n, InodeIdentifier i, u8 ft) : name_length(strlen(n)) , inode(i) , file_type(ft) @@ -45,7 +45,7 @@ FS::DirectoryEntry::DirectoryEntry(const char* n, InodeIdentifier i, byte ft) name[name_length] = '\0'; } -FS::DirectoryEntry::DirectoryEntry(const char* n, int nl, InodeIdentifier i, byte ft) +FS::DirectoryEntry::DirectoryEntry(const char* n, int nl, InodeIdentifier i, u8 ft) : name_length(nl) , inode(i) , file_type(ft) |