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

Function nlm_msgld

freebsd/mips/nlm/hal/cop2.h:191–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

189}
190
191static inline int
192nlm_msgld(int vc)
193{
194 int val;
195 __asm__ volatile (
196 ".set push\n"
197 ".set noreorder\n"
198 ".set mips64\n"
199 "move $8, %1\n"
200 "/* msgld $9, $8 */\n"
201 ".word 0x4a084802\n"
202 "move %0, $9\n"
203 ".set pop\n"
204 : "=r" (val)
205 : "r" (vc)
206 : "$8", "$9");
207 return val;
208}
209
210static inline void
211nlm_msgwait(int vc)

Callers 1

nlm_fmn_msgrcvFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected