diff options
author | Mattias Andrée <maandree@kth.se> | 2023-11-26 18:46:14 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2023-11-26 18:46:14 +0100 |
commit | ab5c381b13d71bff20166a1c0b1d4e8ea1ebefec (patch) | |
tree | 20b0e41af90ec5140dbcf957a5b30b8069bdbcfc /dev/whats-new | |
parent | m (diff) | |
download | sctrace-ab5c381b13d71bff20166a1c0b1d4e8ea1ebefec.tar.gz sctrace-ab5c381b13d71bff20166a1c0b1d4e8ea1ebefec.tar.bz2 sctrace-ab5c381b13d71bff20166a1c0b1d4e8ea1ebefec.tar.xz |
Add system calls and scripts for finding new and extended system calls
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'dev/whats-new')
-rwxr-xr-x | dev/whats-new | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/dev/whats-new b/dev/whats-new new file mode 100755 index 0000000..506a302 --- /dev/null +++ b/dev/whats-new @@ -0,0 +1,13 @@ +#!/bin/sh +cd -- "$(dirname -- "$0")" +status=0 +for cmd in \ + new-syscalls \ + new-accept4-flags \ + new-access-flags +do + if ! ./$cmd; then + status=1 + fi +done +exit $status |