Lines Matching defs:stoppcbs
177 // stoppcbs is an array of PCBs on all CPUs
181 lldb::addr_t stoppcbs = FindSymbol("stoppcbs");
182 // In later FreeBSD versions stoppcbs is a pointer to the array.
185 if (stoppcbs != LLDB_INVALID_ADDRESS && osreldate >= 1400089)
186 stoppcbs = ReadPointerFromMemory(stoppcbs, error);
241 // if we managed to read stoppcbs and pcb_size, use them to find
243 if (stoppcbs != LLDB_INVALID_ADDRESS && pcbsize > 0)
244 pcb_addr = stoppcbs + oncpu * pcbsize;