HomeSort by: relevance | last modified time | path
    Searched defs:locks (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
atomic.c 11 * arbitrary-sized memory locations. This design uses locks that should
21 * locks and hashes the object pointers to find the one that it should use.
40 /// Number of locks. This allocates one page on 32-bit platforms, two on
73 /// locks for atomic operations
74 static Lock locks[SPINLOCK_COUNT] = { [0 ... SPINLOCK_COUNT-1] = {0,1,0} }; variable in typeref:typename:Lock[]
82 /// Locks a lock. In the current implementation, this is potentially
87 static Lock locks[SPINLOCK_COUNT]; // initialized to OS_SPINLOCK_INIT which is 0 variable in typeref:typename:Lock[]
95 /// Locks a lock. In the current implementation, this is potentially
103 /// locks for atomic operations
104 static Lock locks[SPINLOCK_COUNT] variable in typeref:typename:Lock[]
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_deadlock_detector_test.cc 165 set<uptr> locks; local in function:RunRemoveNodeTest
166 locks.insert(l0);
167 locks.insert(l1);
168 locks.insert(l2);
169 locks.insert(l3);
170 locks.insert(l4);
171 locks.insert(l5);
174 locks.insert(lt);
179 EXPECT_EQ(locks.size(), d.size());
195 locks.clear()
249 set<uptr> locks; local in function:RunMultipleEpochsTest
    [all...]
  /src/sys/arch/x86/x86/
intr.c 675 int locks; local in function:intr_wrapper
679 locks = curcpu()->ci_biglock_count;
686 KASSERTMSG(locks == curcpu()->ci_biglock_count,
687 "%s @ %p slipped locks %d -> %d",
688 ih->ih_xname, ih->ih_realfun, locks, curcpu()->ci_biglock_count);
  /src/sys/arch/alpha/alpha/
pmap.c 323 * READ/WRITE LOCKS
340 * * pmap lock (global hash) - These locks protect the pmap structures.
342 * * pmap activation lock (global hash) - These IPL_SCHED spin locks
348 * * pvh_lock (global hash) - These locks protect the PV lists for
361 * pmap_growkernel() acquires the locks in the following order:
406 } locks; member in union:__anonefcf7a31030a
416 return &pmap_pmap_locks[PMAP_LOCK_HASH(pmap)].locks.lock;
422 return &pmap_pmap_locks[PMAP_LOCK_HASH(pmap)].locks.activation_lock;
1404 * Initialize the locks.
1412 mutex_init(&pmap_pmap_locks[i].locks.lock
    [all...]

Completed in 39 milliseconds