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

Function fuword

freebsd/kern/subr_uio.c:486–494  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

484#endif /* _LP64 */
485
486long
487fuword(volatile const void *addr)
488{
489 long val;
490 int rv;
491
492 rv = fueword(addr, &val);
493 return (rv == -1 ? -1 : val);
494}
495
496uint32_t
497casuword32(volatile uint32_t *addr, uint32_t old, uint32_t new)

Callers 3

vm86_fuwordFunction · 0.85
aiocb_fetch_statusFunction · 0.85
aiocb_fetch_errorFunction · 0.85

Calls 1

fuewordFunction · 0.50

Tested by

no test coverage detected