I packaged landrun for openSUSE and in testing it, found that landrun adds considerable overhead.
> time /usr/bin/touch /tmp/foo
real 0m0.002s
user 0m0.002s
sys 0m0.000s
> time landrun --rox /usr --rw /tmp /usr/bin/touch /tmp/foo
real 0m0.005s
user 0m0.004s
sys 0m0.002s
Also strace -f output has 1091 lines compared to 122 lines without landrun, including 4 clone3 calls where I only expected 1.
My guess is that goroutines are involved there.
I packaged landrun for openSUSE and in testing it, found that landrun adds considerable overhead.
Also
strace -foutput has 1091 lines compared to 122 lines without landrun, including 4clone3calls where I only expected 1.My guess is that goroutines are involved there.