update
[ltt-control.git] / ltt-control / facilities / process.xml
1 <?xml version="1.0"?>
2 <facility name="process">
3 <description>The process facility has events related to process handling in the kernel.</description>
4
5 <type name="signal_name">
6 <enum>
7 <label name="SIGHUP" value="1"/> <description>Hangup (POSIX).</description>
8 <label name="SIGINT" value="2"/> <description>Interrupt (ANSI).</description>
9 <label name="SIGQUIT" value="3"/> <description>Quit (POSIX).</description>
10 <label name="SIGILL" value="4"/> <description>Illegal instruction (ANSI).</description>
11 <label name="SIGTRAP" value="5"/> <description>Trace trap (POSIX).</description>
12 <label name="SIGABRT" value="6"/> <description>Abort (ANSI).</description>
13 <label name="SIGBUS" value="7"/> <description>BUS error (4.2 BSD).</description>
14 <label name="SIGFPE" value="8"/> <description>Floating-point exception (ANSI).</description>
15 <label name="SIGKILL" value="9"/> <description>Kill, unblockable (POSIX).</description>
16 <label name="SIGUSR1" value="10"/> <description>User-defined signal 1 (POSIX).</description>
17 <label name="SIGSEGV" value="11"/> <description>Segmentation violation (ANSI).</description>
18 <label name="SIGUSR2" value="12"/> <description>User-defined signal 2 (POSIX).</description>
19 <label name="SIGPIPE" value="13"/> <description>Broken pipe (POSIX).</description>
20 <label name="SIGALRM" value="14"/> <description>Alarm clock (POSIX).</description>
21 <label name="SIGTERM" value="15"/> <description>Termination (ANSI).</description>
22 <label name="SIGSTKFLT" value="16"/> <description>Stack fault.</description>
23
24 <label name="SIGCHLD" value="17"/> <description>Child status has changed (POSIX).</description>
25 <label name="SIGCONT" value="18"/> <description>Continue (POSIX).</description>
26 <label name="SIGSTOP" value="19"/> <description>Stop, unblockable (POSIX).</description>
27 <label name="SIGTSTP" value="20"/> <description>Keyboard stop (POSIX).</description>
28 <label name="SIGTTIN" value="21"/> <description>Background read from tty (POSIX).</description>
29 <label name="SIGTTOU" value="22"/> <description>Background write to tty (POSIX).</description>
30 <label name="SIGURG" value="23"/> <description>Urgent condition on socket (4.2 BSD).</description>
31 <label name="SIGXCPU" value="24"/> <description>CPU limit exceeded (4.2 BSD).</description>
32 <label name="SIGXFSZ" value="25"/> <description>File size limit exceeded (4.2 BSD).</description>
33 <label name="SIGVTALRM" value="26"/> <description>Virtual alarm clock (4.2 BSD).</description>
34 <label name="SIGPROF" value="27"/> <description>Profiling alarm clock (4.2 BSD).</description>
35 <label name="SIGWINCH" value="28"/> <description>Window size change (4.3 BSD, Sun).</description>
36 <label name="SIGIO" value="29"/> <description>I/O now possible (4.2 BSD). (aka SIGPOLL)</description>
37 <label name="SIGPWR" value="30"/> <description>Power failure restart (System V).</description>
38 <label name="SIGSYS" value="31"/> <description>Bad system call.</description>
39 </enum>
40 </type>
41
42 <event name="fork">
43 <description>Process fork</description>
44 <field name="parent_pid"> <description>PID of the parent process</description> <uint/> </field>
45 <field name="child_pid"> <description>PID of the child process</description> <uint/> </field>
46 <field name="child_tgid"> <description>Thread group ID of the child process (POSIX PID)</description> <uint/> </field>
47 </event>
48
49 <event name="exit">
50 <description>Process exit</description>
51 <field name="pid"> <description>PID of the process</description> <uint/> </field>
52 </event>
53
54 <event name="wait">
55 <description>Process wait</description>
56 <field name="parent_pid"> <description>PID of the waiting process</description> <uint/> </field>
57 <field name="child_pid"> <description>PID of the process waited for</description> <uint/> </field>
58 </event>
59
60 <event name="free">
61 <description>Process kernel data structure free (end of life of a zombie)</description>
62 <field name="pid"> <description>PID of the freed process</description> <uint/> </field>
63 </event>
64
65 <event name="kill">
66 <description>Process kill system call</description>
67 <field name="pid"> <description>PID of the process</description> <uint/> </field>
68 <field name="target_pid"> <description>PID of the process to kill</description> <uint/> </field>
69 <field name="signal"> <description>Signal number</description> <typeref name="signal_name"/> </field>
70 </event>
71
72 <event name="signal">
73 <description>Process signal reception</description>
74 <field name="pid"> <description>PID of the receiving process</description> <uint/> </field>
75 <field name="signal"> <description>Signal number</description> <typeref name="signal_name"/> </field>
76 </event>
77
78 <event name="wakeup">
79 <description>Process wakeup</description>
80 <field name="pid"> <description>PID of the receiving process</description> <uint/> </field>
81 <field name="state"> <description>State of the awakened process. -1 unrunnable, 0 runnable, >0 stopped.</description> <int/> </field>
82 </event>
83
84 <event name="schedchange">
85 <description>Scheduling change</description>
86 <field name="out"> <description>Outgoing process</description> <uint/> </field>
87 <field name="in"> <description>Incoming process</description> <uint/> </field>
88 <field name="out_state"> <description>Outgoing process' state. -1 unrunnable, 0 runnable, >0 stopped.</description> <int/> </field>
89 </event>
90
91 </facility>
This page took 0.031221 seconds and 4 git commands to generate.