From 2c94773bdc4d2f117f56ad1caa839ad35b76d072 Mon Sep 17 00:00:00 2001 From: Rob Bradford Date: Fri, 11 Nov 2022 08:18:18 +0000 Subject: [PATCH] docs: seccomp: Enhance strace command to print thread name Signed-off-by: Rob Bradford --- docs/seccomp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/seccomp.md b/docs/seccomp.md index 77726dadc..4668b35cd 100644 --- a/docs/seccomp.md +++ b/docs/seccomp.md @@ -64,5 +64,5 @@ it will log every system call issued by the process. It is important to use `-f` option in order to trace each and every thread belonging to the process. ``` -strace -f ./cloud-hypervisor ... +strace --decode-pids=comm -f ./cloud-hypervisor ... ```