OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PCB_DBREGS
(Results
1 - 4
of
4
) sorted by relevancy
/src/sys/arch/x86/x86/
dbregs.c
107
if (__predict_true(pcb->
pcb_dbregs
== NULL)) {
108
KASSERT((pcb->pcb_flags &
PCB_DBREGS
) == 0);
112
dbregs = pcb->
pcb_dbregs
;
115
pcb->
pcb_dbregs
= NULL;
116
pcb->pcb_flags &= ~
PCB_DBREGS
;
129
pcb->pcb_flags &= ~
PCB_DBREGS
;
139
if (pcb->
pcb_dbregs
== NULL) {
140
pcb->
pcb_dbregs
= pool_get(&x86_dbregspl, PR_WAITOK);
141
memcpy(pcb->
pcb_dbregs
, &initdbstate, sizeof(initdbstate));
142
pcb->pcb_flags |=
PCB_DBREGS
;
[
all
...]
vm_machdep.c
151
pcb2->
pcb_dbregs
= NULL;
152
pcb2->pcb_flags &= ~
PCB_DBREGS
;
266
KASSERT((pcb->pcb_flags &
PCB_DBREGS
) == 0);
267
if (pcb->
pcb_dbregs
) {
268
pool_put(&x86_dbregspl, pcb->
pcb_dbregs
);
269
pcb->
pcb_dbregs
= NULL;
/src/sys/arch/i386/include/
pcb.h
93
struct dbreg *
pcb_dbregs
; /* CPU Debug Registers */
member in struct:pcb
96
#define
PCB_DBREGS
0x01
/src/sys/arch/amd64/include/
pcb.h
87
#define
PCB_DBREGS
0x02
97
struct dbreg *
pcb_dbregs
;
member in struct:pcb
Completed in 12 milliseconds
Indexes created Thu Oct 02 14:10:14 GMT 2025