1 2 3 4 5 6 7 8 9 10 11 12 13 14
probe process("static_uprobes.x").mark("label1") { printf("In label1 probe\n") } probe process("static_uprobes.x").mark("label2") { printf("In label2 probe %#x\n", $arg1) } probe process("static_uprobes.x").mark("label3") { printf("In label3 probe %#x %#x\n", $arg1, $arg2) }