]> sourceware.org Git - systemtap.git/blob - testsuite/semok/config_config.stp
Rename CONTEXT regflags to probe_flags. Now simply indicates user mode.
[systemtap.git] / testsuite / semok / config_config.stp
1 #! stap -p2
2
3 # check that CONFIGs can match other CONFIGS.
4 probe
5 %( CONFIG_HZ == CONFIG_NR_CPUS
6 || CONFIG_NR_CPUS > CONFIG_HZ
7 || CONFIG_NR_CPUS < CONFIG_HZ %?
8 %( CONFIG_NFSD == CONFIG_NFS_COMMON
9 || CONFIG_NFS_COMMON != CONFIG_NFSD
10 %? begin
11 %: noprobe
12 %)
13 %: nonoprobe
14 %)
15 {
16 exit()
17 }
This page took 0.037274 seconds and 5 git commands to generate.