MCPcopy Create free account
hub / github.com/F-Stack/f-stack / linux_writev

Function linux_writev

freebsd/amd64/linux32/linux32_machdep.c:231–243  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

229}
230
231int
232linux_writev(struct thread *td, struct linux_writev_args *uap)
233{
234 struct uio *auio;
235 int error;
236
237 error = linux32_copyinuio(uap->iovp, uap->iovcnt, &auio);
238 if (error)
239 return (error);
240 error = kern_writev(td, uap->fd, auio);
241 free(auio, M_IOV);
242 return (error);
243}
244
245struct l_ipc_kludge {
246 l_uintptr_t msgp;

Callers

nothing calls this directly

Calls 3

linux32_copyinuioFunction · 0.85
kern_writevFunction · 0.85
freeFunction · 0.50

Tested by

no test coverage detected