-
Notifications
You must be signed in to change notification settings - Fork 0
/
syscalls-x86.html
131 lines (125 loc) · 5.56 KB
/
syscalls-x86.html
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!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=utf-8" >
<title>Linux Syscall Reference</title>
<style type="text/css" title="currentStyle">
@import "css/page.css";
@import "css/table_jui.css";
@import "css/jquery-ui-1.7.2.custom.css";
</style>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/typography.css" type="text/css" media="screen" />
<link rel="stylesheet" href="css/stylesheet.css" type="text/css" media="screen" />
<script src="js/cufon-yui.js" type="text/javascript"></script>
<script src="js/ChunkFive_400.font.js" type="text/javascript"></script>
<script type="text/javascript">
Cufon('.chunk')('.chunk a', {hover:true});
</script>
<script type="text/javascript" language="javascript" src="js/jquery.js"></script>
<script type="text/javascript" language="javascript" src="js/jquery.dataTables.js"></script>
<script type="text/javascript" charset="utf-8">
var renderReg = function (obj) {
if(obj.aData[obj.iDataColumn].type != null)
if(obj.aData[obj.iDataColumn].def != null && obj.aData[obj.iDataColumn].file != "")
return "<a target='_blank' href='http://lxr.free-electrons.com/source/"+obj.aData[obj.iDataColumn].def.file+"#L"+obj.aData[obj.iDataColumn].def.line+"'>"+obj.aData[obj.iDataColumn].type+"</a>";
else
return obj.aData[obj.iDataColumn].type;
else
return "-";
};
$(document).ready(function() {
$('#syscall_table').dataTable( {
"sDom": '<"H"rlf>t<"F"ip>',
"iDisplayLength": 10,
"oLanguage": {
"sLengthMenu": 'Show <select><option value="10">10</option><option value="25">25</option><option value="50">50</option><option value="100">100</option><option value="-1">All</option></select> entries'
},
"bJQueryUI": true,
"bProcessing": true,
"sPaginationType": "full_numbers",
"sAjaxSource": './syscalls-x86.json',
"aoColumns": [
/* Number */ { "sClass": "center"},
/* Name */ { "sClass": "bold", "sType": "html", "fnRender": function (obj) {
if(obj.aData[1].match("sys_(.+)"))
return "<a target='_blank' href='http://www.kernel.org/doc/man-pages/online/pages/man2/"+obj.aData[1].match("sys_(.+)")[1]+".2.html'>"+obj.aData[1]+"</a>";
else
return obj.aData[1]
}
},
/* Signature */ { "bVisible": false, "bSearchable": false },
/* eax */ { iDataSort: 0, "bSearchable": true },
/* ebx */ { "sType": "html", "fnRender": renderReg, "bSearchable": false },
/* ecx */ { "sType": "html", "fnRender": renderReg, "bSearchable": false },
/* edx */ { "sType": "html", "fnRender": renderReg, "bSearchable": false },
/* esi */ { "sType": "html", "fnRender": renderReg, "bSearchable": false },
/* edi */ { "sType": "html", "fnRender": renderReg, "bSearchable": false },
/* URL */ { "sType": "html", "bSearchable": false, "fnRender": function (oObj) {
if(oObj.aData[9] != "")
return "<a target='_blank' href='http://lxr.free-electrons.com/source/"+oObj.aData[9]+"#L"+oObj.aData[10]+"'>"+oObj.aData[9]+":"+oObj.aData[10]+"</a>";
else
return oObj.aData[9];
}
},
/* Line */ { "bVisible": false, "bSearchable": false }
]
} );
} );
</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-12723311-2']);
_gaq.push(['_setDomainName', '.kernelgrok.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body>
<div id="header">
<div class="site">
<div id="headline">
<h2 class="chunk">Linux Syscall Reference</h2>
</div>
</div>
</div>
<div id="container2" class="site">
<table cellpadding="0" cellspacing="0" border="0" class="display" id="syscall_table">
<thead>
<tr>
<th rowspan="2">#</th>
<th rowspan="2">Name</th>
<th rowspan="2">Signature</th>
<th class="ui-state-default" colspan="6">Registers</th>
<th rowspan="2">Definition</th>
<th rowspan="2">URL</th>
</tr>
<tr>
<th>eax</th>
<th>ebx</th>
<th>ecx</th>
<th>edx</th>
<th>esi</th>
<th>edi</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<div id="footer" class="site">
<h4 class="chunk">
Generated from Linux kernel 3.10.17 using <a target="_blank" href="http://ctags.sourceforge.net/">Exuberant Ctags</a>,
<a target="_blank" href="http://www.python.org/">Python</a>, and
<a target="_blank" href="http://www.datatables.net/">DataTables</a>.
<br>
Project on <a href="https://github.com/gregose/syscall-table">GitHub</a>. Hosted on <a href="http://pages.github.com">GitHub Pages</a>.
</h4>
</div>
<script type="text/javascript">Cufon.now();</script>
</body>
</html>