blob: a563d107fbe6118ac86a24d49e2f6cbf6f01bd4b (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
# options '-A' and '-x pid' are mutually exclusive
#
# -A Attach to loaded systemtap module.
# -x pid Sets the '_stp_target' variable to pid.
staprun -A -x 100 fake_module
|