summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLiav A <liavalb@gmail.com>2023-02-24 22:18:34 +0200
committerJelle Raaijmakers <jelle@gmta.nl>2023-06-04 21:32:34 +0200
commit59cab85002f0ae950c1325b093971945be73fae7 (patch)
tree58fb940330a0b07f4b21449b58740972d9780e7c
parent336fb4f3135c4f41228f1393d85183dc44e8b92b (diff)
downloadserenity-59cab85002f0ae950c1325b093971945be73fae7.zip
Kernel: Rename Syscall.cpp => Syscalls/SyscallHandler.cpp
-rw-r--r--Kernel/CMakeLists.txt4
-rw-r--r--Kernel/Syscalls/SyscallHandler.cpp (renamed from Kernel/Syscall.cpp)0
2 files changed, 2 insertions, 2 deletions
diff --git a/Kernel/CMakeLists.txt b/Kernel/CMakeLists.txt
index c8d736ebc7..9334b7679d 100644
--- a/Kernel/CMakeLists.txt
+++ b/Kernel/CMakeLists.txt
@@ -258,7 +258,6 @@ set(KERNEL_SOURCES
Net/Socket.cpp
Net/TCPSocket.cpp
Net/UDPSocket.cpp
- Syscall.cpp
Security/AddressSanitizer.cpp
Security/Credentials.cpp
Security/Random.cpp
@@ -324,6 +323,7 @@ set(KERNEL_SOURCES
Syscalls/stat.cpp
Syscalls/statvfs.cpp
Syscalls/sync.cpp
+ Syscalls/SyscallHandler.cpp
Syscalls/sysconf.cpp
Syscalls/thread.cpp
Syscalls/times.cpp
@@ -653,7 +653,7 @@ if (ENABLE_KERNEL_COVERAGE_COLLECTION)
# interrupt handlers because their calling convention is not compatible
# with the System V ABI.
../Kernel/Arch/x86_64/Interrupts.cpp
- ../Kernel/Syscall.cpp
+ ../Kernel/Syscall/SyscallHandler.cpp
)
set_source_files_properties(${KCOV_EXCLUDED_SOURCES} PROPERTIES COMPILE_FLAGS "-fno-sanitize-coverage=trace-pc")
elseif (ENABLE_USERSPACE_COVERAGE_COLLECTION)
diff --git a/Kernel/Syscall.cpp b/Kernel/Syscalls/SyscallHandler.cpp
index c6130882cb..c6130882cb 100644
--- a/Kernel/Syscall.cpp
+++ b/Kernel/Syscalls/SyscallHandler.cpp