blob: ce00893d030d488c17022502e729b40083d059fe (
plain)
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
|
#! stap -p4
probe begin {
print (_struct_timeval_u(0,0))
print (_struct_compat_timeval_u(0,0))
print (_struct_timezone_u (0))
print (_struct_utimbuf_actime(0))
print (_struct_utimbuf_modtime(0))
print (_struct_compat_utimbuf_actime(0))
print (_struct_compat_utimbuf_modtime(0))
print (_struct_timespec_u(0,0))
print (_struct_compat_timespec_u(0,0))
print (_struct_itimerspec_u(0))
print (_struct_itimerval_u(0))
print (_struct_compat_itimerval_u(0))
print (_struct_sockaddr_u(0,0))
print (_struct_rlimit_u(0))
print (_fildes_u(0))
print (__sem_flags(0))
print (__get_argv(0,0))
print (__get_compat_argv(0,0))
# print (__uget_tz_m(0,0))
# print (__uget_timex_m(0,0))
# print (__uget_tms_m(0,0))
# print (__uget_ts_m(0,0))
print (_sigprocmask_how_str(0))
print (_sys_open_flag_str(0))
print (_mlockall_flags_str(0))
print (_module_flags_str(0))
print (_reboot_magic_str(0))
print (_mountflags_str(0))
print (_umountflags_str(0))
print (__short(0))
print (__int32(0))
print (_signal_name(0))
print (_semctl_cmd(0))
print (_stp_sigset_u(0))
print (__fork_flags(0))
print (_at_flag_str(0))
print (_shmat_flags_str(0))
print (_mprotect_prot_str(0))
print (_mmap_flags(0))
print (get_mmap_args(0))
print (_struct_sigaction_u(0))
}
|