| 383 | |
| 384 | #if defined(SMP) || defined(KLD_MODULE) |
| 385 | static __inline void |
| 386 | __storeload_barrier(void) |
| 387 | { |
| 388 | |
| 389 | __asm __volatile("lock; addl $0,%%gs:%0" |
| 390 | : "+m" (*(u_int *)OFFSETOF_MONITORBUF) : : "memory", "cc"); |
| 391 | } |
| 392 | #else /* _KERNEL && UP */ |
| 393 | static __inline void |
| 394 | __storeload_barrier(void) |
no outgoing calls
no test coverage detected