summaryrefslogtreecommitdiffstats
path: root/testsuite/semok/twentyseven.stp
blob: def633a5c8d2c3cce81f4051c0af5caf605ede5e (plain)
1
2
3
4
5
6
7
8
9
10
11
#! stap -p2

probe foo.a = kernel.function("sys_read") /* some */ ! /* sufficient */ ,
              kernel.function("no_such_function")
      { "foo.a" }

probe foo.b = module("*scsi*").function("no_such_thing") /* none */ ? ,
      	      module("*scsi*").function("*queue*") /* some */ ! , /* suff'nt */
	      module("no_such_module").function("no_such_function") 
      { "foo.b" }
probe foo.* { }