mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 15:27:42 +00:00
Kernel: Rename Syscall.cpp => Syscalls/SyscallHandler.cpp
This commit is contained in:
parent
336fb4f313
commit
59cab85002
2 changed files with 2 additions and 2 deletions
|
@ -258,7 +258,6 @@ set(KERNEL_SOURCES
|
||||||
Net/Socket.cpp
|
Net/Socket.cpp
|
||||||
Net/TCPSocket.cpp
|
Net/TCPSocket.cpp
|
||||||
Net/UDPSocket.cpp
|
Net/UDPSocket.cpp
|
||||||
Syscall.cpp
|
|
||||||
Security/AddressSanitizer.cpp
|
Security/AddressSanitizer.cpp
|
||||||
Security/Credentials.cpp
|
Security/Credentials.cpp
|
||||||
Security/Random.cpp
|
Security/Random.cpp
|
||||||
|
@ -324,6 +323,7 @@ set(KERNEL_SOURCES
|
||||||
Syscalls/stat.cpp
|
Syscalls/stat.cpp
|
||||||
Syscalls/statvfs.cpp
|
Syscalls/statvfs.cpp
|
||||||
Syscalls/sync.cpp
|
Syscalls/sync.cpp
|
||||||
|
Syscalls/SyscallHandler.cpp
|
||||||
Syscalls/sysconf.cpp
|
Syscalls/sysconf.cpp
|
||||||
Syscalls/thread.cpp
|
Syscalls/thread.cpp
|
||||||
Syscalls/times.cpp
|
Syscalls/times.cpp
|
||||||
|
@ -653,7 +653,7 @@ if (ENABLE_KERNEL_COVERAGE_COLLECTION)
|
||||||
# interrupt handlers because their calling convention is not compatible
|
# interrupt handlers because their calling convention is not compatible
|
||||||
# with the System V ABI.
|
# with the System V ABI.
|
||||||
../Kernel/Arch/x86_64/Interrupts.cpp
|
../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")
|
set_source_files_properties(${KCOV_EXCLUDED_SOURCES} PROPERTIES COMPILE_FLAGS "-fno-sanitize-coverage=trace-pc")
|
||||||
elseif (ENABLE_USERSPACE_COVERAGE_COLLECTION)
|
elseif (ENABLE_USERSPACE_COVERAGE_COLLECTION)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue