aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/manager/html/syscalls.html
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/manager/html/syscalls.html')
-rw-r--r--pkg/manager/html/syscalls.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/pkg/manager/html/syscalls.html b/pkg/manager/html/syscalls.html
index e3edfcabf..d16337978 100644
--- a/pkg/manager/html/syscalls.html
+++ b/pkg/manager/html/syscalls.html
@@ -9,7 +9,9 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
<th><a onclick="return sortTable(this, 'Syscall', textSort)" href="#">Syscall</a></th>
<th><a onclick="return sortTable(this, 'Inputs', numSort)" href="#" title="Number of inputs in the corpus added because of this syscall">Inputs</a></th>
<th><a onclick="return sortTable(this, 'Total', numSort)" href="#" title="Total number of inputs in the corpus that contain this syscall">Total</a></th>
- <th><a onclick="return sortTable(this, 'Coverage', numSort)" href="#">Coverage</a></th>
+ <th><a onclick="return sortTable(this, 'Coverage', numSort)" href="#" title="Coverage achieved by this syscall">Coverage</a></th>
+ <th><a onclick="return sortTable(this, 'Cover overflows', numSort)" href="#" title="Number of times coverage buffer has overflowed on this syscall">Cover overflows</a></th>
+ <th><a onclick="return sortTable(this, 'Comps overflows', numSort)" href="#" title="Number of times comparisons buffer has overflowed on this syscall">Comps overflows</a></th>
<th>Prio</th>
</tr>
{{range $c := $.Calls}}
@@ -18,6 +20,8 @@ Use of this source code is governed by Apache 2 LICENSE that can be found in the
<td><a href='/corpus?call={{$c.Name}}'>{{$c.Inputs}}</a></td>
<td>{{$c.Total}}</td>
<td><a href='/cover?call={{$c.Name}}'>{{$c.Cover}}</a></td>
+ <td>{{$c.CoverOverflows}}</td>
+ <td>{{$c.CompsOverflows}}</td>
<td><a href='/prio?call={{$c.Name}}'>prio</a></td>
</tr>
{{end}}