Searched refs:p_step (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.3-release/sys/fs/procfs/
H A Dprocfs_ioctl.c127 while (p->p_step == 0 && (p->p_flag & P_WEXIT) == 0) {
139 ps->state = (p->p_step == 0);
142 ps->why = p->p_step ? p->p_stype : 0;
143 ps->val = p->p_step ? p->p_xstat : 0;
147 while (p->p_step == 0 && (p->p_flag & P_WEXIT) == 0) {
159 ps32->state = (p->p_step == 0);
162 ps32->why = p->p_step ? p->p_stype : 0;
163 ps32->val = p->p_step ? p->p_xstat : 0;
175 if (p->p_step == 0)
183 p->p_step
[all...]
/freebsd-10.3-release/contrib/ntp/ntpd/
H A Drefclock_msfees.c1032 int p_step = ees->this_step; local
1034 ees->last_steps[p_step] = this_step;
1035 p= p_step;
1036 p_step++;
1037 if (p_step >= LAST_STEPS) p_step = 0;
1038 ees->this_step = p_step;
1040 while (p != p_step) {
1074 #define SV(x) (ees->last_steps[(x + p_step) % LAST_STEPS])
1076 ees->unit, suspect_4ms_step, p_step, S
[all...]
/freebsd-10.3-release/sys/kern/
H A Dsys_process.c1325 * stay stopped until p->p_step is cleared
1333 p->p_step = 1;
1341 msleep(&p->p_step, &p->p_mtx, PWAIT, "stopevent", 0);
1342 } while (p->p_step);
H A Dkern_sig.c2184 p->p_step = 0;
2185 wakeup(&p->p_step);
/freebsd-10.3-release/sys/sys/
H A Dproc.h542 char p_step; /* (c) Process is stopped. */ member in struct:proc

Completed in 124 milliseconds