Sophie

Sophie

distrib > Fedora > 16 > i386 > by-pkgid > 92d2bfb5a363004a8a399eefe5c79f14 > files > 42

coccinelle-examples-1.0.0-0.rc4.2.fc16.i686.rpm

// can constraint to specific function by using multiple rules

@ rule1 @
struct file_operations x;
identifier ioctl_fn;
@@

x.ioctl = ioctl_fn;


@@
identifier rule1.ioctl_fn;
@@

 ioctl_fn(...) 
{

- foo(1);
+ foo(2);
}