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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
|
.\" -*- nroff -*-
.TH TAPSET::RPC 3stap "October 2018" "SystemTap Tapset Reference"
.SH NAME
tapset::rpc \- systemtap rpc tapset
.SH DESCRIPTION
.TP
.P
.TP
.B sunrpc.clnt.create_client
Create an RPC client
.IP
See
.IR probe::sunrpc.clnt.create_client (3stap)
for details.
.P
.TP
.B sunrpc.clnt.clone_client
Clone an RPC client structure
.IP
See
.IR probe::sunrpc.clnt.clone_client (3stap)
for details.
.P
.TP
.B sunrpc.clnt.shutdown_client
Shutdown an RPC client
.IP
See
.IR probe::sunrpc.clnt.shutdown_client (3stap)
for details.
.P
.TP
.B sunrpc.clnt.bind_new_program
Bind a new RPC program to an existing client
.IP
See
.IR probe::sunrpc.clnt.bind_new_program (3stap)
for details.
.P
.TP
.B sunrpc.clnt.call_sync
Make a synchronous RPC call
.IP
See
.IR probe::sunrpc.clnt.call_sync (3stap)
for details.
.P
.TP
.B sunrpc.clnt.call_async
Make an asynchronous RPC call
.IP
See
.IR probe::sunrpc.clnt.call_async (3stap)
for details.
.P
.TP
.B sunrpc.clnt.restart_call
Restart an asynchronous RPC call
.IP
See
.IR probe::sunrpc.clnt.restart_call (3stap)
for details.
.P
.TP
.B sunrpc.svc.register
Register an RPC service with the local portmapper
.IP
See
.IR probe::sunrpc.svc.register (3stap)
for details.
.P
.TP
.B sunrpc.svc.create
Create an RPC service
.IP
See
.IR probe::sunrpc.svc.create (3stap)
for details.
.P
.TP
.B sunrpc.svc.destroy
Destroy an RPC service
.IP
See
.IR probe::sunrpc.svc.destroy (3stap)
for details.
.P
.TP
.B sunrpc.svc.process
Process an RPC request
.IP
See
.IR probe::sunrpc.svc.process (3stap)
for details.
.P
.TP
.B sunrpc.svc.authorise
An RPC request is to be authorised
.IP
See
.IR probe::sunrpc.svc.authorise (3stap)
for details.
.P
.TP
.B sunrpc.svc.recv
Listen for the next RPC request on any socket
.IP
See
.IR probe::sunrpc.svc.recv (3stap)
for details.
.P
.TP
.B sunrpc.svc.send
Return reply to RPC client
.IP
See
.IR probe::sunrpc.svc.send (3stap)
for details.
.P
.TP
.B sunrpc.svc.drop
Drop RPC request
.IP
See
.IR probe::sunrpc.svc.drop (3stap)
for details.
.P
.TP
.B sunrpc.sched.new_task
Create new task for the specified client
.IP
See
.IR probe::sunrpc.sched.new_task (3stap)
for details.
.P
.TP
.B sunrpc.sched.release_task
Release all resources associated with a task
.IP
See
.IR probe::sunrpc.sched.release_task (3stap)
for details.
.P
.TP
.B sunrpc.sched.execute
Execute the RPC `scheduler'
.IP
See
.IR probe::sunrpc.sched.execute (3stap)
for details.
.P
.TP
.B sunrpc.sched.delay
Delay an RPC task
.IP
See
.IR probe::sunrpc.sched.delay (3stap)
for details.
.SH SEE ALSO
.BR
.IR \%probe::sunrpc.clnt.create_client (3stap),
.BR
.IR \%probe::sunrpc.clnt.clone_client (3stap),
.BR
.IR \%probe::sunrpc.clnt.shutdown_client (3stap),
.BR
.IR \%probe::sunrpc.clnt.bind_new_program (3stap),
.BR
.IR \%probe::sunrpc.clnt.call_sync (3stap),
.BR
.IR \%probe::sunrpc.clnt.call_async (3stap),
.BR
.IR \%probe::sunrpc.clnt.restart_call (3stap),
.BR
.IR \%probe::sunrpc.svc.register (3stap),
.BR
.IR \%probe::sunrpc.svc.create (3stap),
.BR
.IR \%probe::sunrpc.svc.destroy (3stap),
.BR
.IR \%probe::sunrpc.svc.process (3stap),
.BR
.IR \%probe::sunrpc.svc.authorise (3stap),
.BR
.IR \%probe::sunrpc.svc.recv (3stap),
.BR
.IR \%probe::sunrpc.svc.send (3stap),
.BR
.IR \%probe::sunrpc.svc.drop (3stap),
.BR
.IR \%probe::sunrpc.sched.new_task (3stap),
.BR
.IR \%probe::sunrpc.sched.release_task (3stap),
.BR
.IR \%probe::sunrpc.sched.execute (3stap),
.BR
.IR \%probe::sunrpc.sched.delay (3stap),
.BR
.IR \%stap (1),
.IR \%stapprobes (3stap)
|