summaryrefslogtreecommitdiff
path: root/Kernel/Process.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2020-01-03 09:27:09 +0100
committerAndreas Kling <awesomekling@gmail.com>2020-01-03 09:27:09 +0100
commit24cc67d199256faa88b43cf580e9b76b4b9b327f (patch)
treeb91a7349427b6c529fe0e5c9ac79700ca1e5e65a /Kernel/Process.h
parent23e4e0323316c671ec52965092c0d8b4c886670d (diff)
downloadserenity-24cc67d199256faa88b43cf580e9b76b4b9b327f.zip
Kernel: Remove read_tsc() syscall
Since nothing is using this, let's just remove it. That's one less thing to worry about.
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r--Kernel/Process.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h
index 100d11b06f..ccffc2161c 100644
--- a/Kernel/Process.h
+++ b/Kernel/Process.h
@@ -184,7 +184,6 @@ public:
int sys$rmdir(const char* pathname);
int sys$mount(const char* device, const char* mountpoint, const char* fstype);
int sys$umount(const char* mountpoint);
- int sys$read_tsc(u32* lsw, u32* msw);
int sys$chmod(const char* pathname, mode_t);
int sys$fchmod(int fd, mode_t);
int sys$chown(const char* pathname, uid_t, gid_t);