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

Function umtx_key_match

freebsd/sys/umtx.h:189–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

187struct thread;
188
189static inline int
190umtx_key_match(const struct umtx_key *k1, const struct umtx_key *k2)
191{
192 return (k1->type == k2->type &&
193 k1->info.both.a == k2->info.both.a &&
194 k1->info.both.b == k2->info.both.b);
195}
196
197int umtx_copyin_timeout(const void *, struct timespec *);
198void umtx_exec(struct proc *p);

Callers 2

umtxq_queue_lookupFunction · 0.85
umtx_pi_lookupFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected