Skip to content
GitLab
Explore
Sign in
Commits on Source (8)
refactor syscall measurement logic and improve command-line argument parsing
· 9e915abd
Ramon Nou
authored
Mar 12, 2025
9e915abd
add support for 'kill' syscall in syscall measurement and update CI configuration
· 203a3d4b
Ramon Nou
authored
Mar 12, 2025
203a3d4b
enhance syscall measurement by adding 'getpagesize' support and updating CI scripts
· d378677d
Ramon Nou
authored
Mar 12, 2025
d378677d
add support for 'getpriority' syscall in syscall measurement and update CI configuration
· 468527f9
Ramon Nou
authored
Mar 12, 2025
468527f9
update README to include 'kill' and 'getpriority' syscalls in usage examples
· e34dd76d
Ramon Nou
authored
Mar 12, 2025
e34dd76d
refactor CMakeLists.txt and run.sh for improved include paths and reduced repeat count
· 3ec2eed3
Ramon Nou
authored
Mar 12, 2025
3ec2eed3
Merge branch 'main' into 'rnou/3-add-new-syscalls'
· dd7a9580
Ramon Nou
authored
Mar 12, 2025
# Conflicts: # CMakeLists.txt # scripts/run.sh
dd7a9580
Merge branch 'rnou/3-add-new-syscalls' into 'main'
· 312ed40e
Ramon Nou
authored
Mar 12, 2025
Rnou/3 add new syscalls See merge request
!4
312ed40e
Show whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
312ed40e
...
...
@@ -33,6 +33,7 @@ message(STATUS "Syscall_intercept include dir: ${Syscall_intercept_INCLUDE_DIR}"
set
(
INCLUDE_DIR
"
${
CMAKE_SOURCE_DIR
}
/include"
)
include_directories
(
${
INCLUDE_DIR
}
${
Syscall_intercept_INCLUDE_DIR
}
${
CMAKE_BINARY_DIR
}
/include
/usr/include
${
Syscall_intercept_INCLUDE_DIR
}
...
...
@@ -42,12 +43,6 @@ add_library(eval_intercept SHARED src/eval.cpp)
add_executable
(
opendevnull src/opendevnull.cpp
)
# Include path from Syscall_intercept into opendevnull
target_include_directories
(
opendevnull
PRIVATE
${
Syscall_intercept_INCLUDE_DIR
}
)
target_include_directories
(
eval_intercept
PRIVATE
${
Syscall_intercept_INCLUDE_DIR
}
...
...