1AUDIT_(3) Linux Audit API AUDIT_(3)
2
3
4
6 audit_request_signal_info - Request signal info for the audit system
7
9 #include <libaudit.h>
10
11 int audit_request_signal_info(int fd);
12
13
15 audit_request_signal_info requests that the kernel send information
16 about the sender of a signal to the audit daemon. The sinal info strucā
17 ture is as follows:
18
19 struct audit_sig_info {
20 uid_t uid;
21 pid_t pid;
22 char ctx[0];
23 };
24
25 This function is likely to be used only by audit daemons and shouldn't
26 be called by any other kind of program.
27
28
30 The return value is <= 0 on error, otherwise it is the netlink sequence
31 id number. This function can have any error that sendto would
32 encounter.
33
34
36 audit_open(3), audit_get_reply(3).
37
38
40 Steve Grubb
41
42
43
44Red Hat Feb 2007 AUDIT_(3)