This file is indexed.

/usr/share/doc/radare-doc/html/Section20.8.2.html is in radare-doc 1:1.5.2-6.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=US-ASCII">
<title>Signal handling</title>
<link rel="previous" href="Section20.8.1.html">
<link rel="ToC" href="contents.html">
<link rel="next" href="Chapter21.html">
</head>
<body>
<h1><a name="dbg-signal"></a>20.8.2 Signal handling</h1>
<p>
You can change visualize and change the signal handlers of the target process:
</p>
<pre><code>[0x4A13B8C0]&gt; !signal
SIGHUP     (DEFAULT)
SIGINT     (IGNORE)
SIGQUIT    (DEFAULT)
SIGILL     (DEFAULT)
SIGTRAP    (DEFAULT)
SIGABRT    (DEFAULT)
SIGFPE     (DEFAULT)
SIGKILL    (DEFAULT)
SIGBUS     (DEFAULT)
SIGSEGV    (DEFAULT)
SIGSYS     (DEFAULT)
SIGPIPE    (DEFAULT)
SIGALRM    (IGNORE)
SIGTERM    (DEFAULT)
SIGURG     (DEFAULT)
SIGSTOP    (DEFAULT)
SIGTSTP    (DEFAULT)
SIGCONT    (DEFAULT)
SIGCHLD    (DEFAULT)
SIGTTIN    (DEFAULT)
SIGTTOU    (DEFAULT)
SIGIO      (DEFAULT)
</code></pre>
<pre><code>[0xB7FA8810]&gt; !sig SIGIO 0x8049350
Signal 29 handled by 0x08049350
[0xB7FA8810]&gt; !sig SIGIO
SIGIO      (0x8049350)
[0xB7FA8810]&gt; !sig SIGIO 0
(DEFAULT)
[0xB7FA8810]&gt; !sig SIGIO
SIGIO      (DEFAULT)
[0xB7FA8810]&gt; 
</code></pre>

<!-- version IDs:
$Id: radare.but 2009-04-25 pancake $
-->
</body>
</html>