1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#! stap -p4 # Test the conversions tapset. probe begin { print (kernel_string(2342)) print (kernel_long(2342)) print (kernel_int(2342)) print (kernel_short(2342)) print (kernel_char(2342)) print (user_string(2342)) print (user_string2(2342,"foobar")) print (user_string_warn(2342)) }