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

Function vm86_suword

freebsd/i386/i386/vm86.c:92–101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

90}
91
92static int
93vm86_suword(volatile void *base, long word)
94{
95
96 if (curthread->td_critnest != 0) {
97 *(volatile long *)base = word;
98 return (0);
99 }
100 return (suword(base, word));
101}
102
103static int
104vm86_fubyte(volatile const void *base)

Callers 1

PUSHLFunction · 0.85

Calls 1

suwordFunction · 0.85

Tested by

no test coverage detected