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

Function pte1_load_clear

freebsd/arm/include/pmap_var.h:219–228  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

217}
218
219static __inline pt1_entry_t
220pte1_load_clear(pt1_entry_t *pte1p)
221{
222 pt1_entry_t opte1;
223
224 opte1 = *pte1p;
225 *pte1p = 0;
226 pte1_sync(pte1p);
227 return (opte1);
228}
229
230static __inline void
231pte1_set_bit(pt1_entry_t *pte1p, uint32_t bit)

Callers 1

pmap_remove_pte1Function · 0.85

Calls 1

pte1_syncFunction · 0.85

Tested by

no test coverage detected