forked from andikleen/simple-pt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
onoff.c
67 lines (58 loc) · 976 Bytes
/
onoff.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* Demonstrate how to enable/disable simple-pt from a program */
#include <stdio.h>
#include <sys/fcntl.h>
#include <unistd.h>
#define noinline __attribute__((noinline))
volatile int v;
void sptcmd(int flag, char *fn)
{
char buf[10];
int len = snprintf(buf, sizeof buf, "%d\n", flag);
int fd = open(fn, O_WRONLY);
if (fd >= 0) {
write(fd, buf, len);
close(fd);
}
}
void onoff(int flag)
{
sptcmd(flag, "/sys/module/simple_pt/parameters/start");
}
void disable_clear(void)
{
sptcmd(0, "/sys/module/simple_pt/parameters/clear_on_start");
}
noinline void f1(void)
{
int i;
for (i = 0; i < 100; i++)
v++;
}
noinline void f2(void)
{
int i;
for (i = 0; i < 100; i++)
v++;
}
noinline void f3(void)
{
int i;
for (i = 0; i < 100; i++)
v++;
}
int main(void)
{
onoff(1);
/* Disable clear on start */
disable_clear();
f1();
write(1, "foo\n", 4);
onoff(0);
f2();
write(1, "xyz\n", 4);
onoff(1);
f3();
write(1, "bar\n", 4);
onoff(0);
return 0;
}