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

/freebsd-10.0-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.0-release/contrib/ntp/ntpd/
H A Drefclock_msfees.c1028 int p_step = ees->this_step; local
1030 ees->last_steps[p_step] = this_step;
1031 p= p_step;
1032 p_step++;
1033 if (p_step >= LAST_STEPS) p_step = 0;
1034 ees->this_step = p_step;
1036 while (p != p_step) {
1070 #define SV(x) (ees->last_steps[(x + p_step) % LAST_STEPS])
1072 ees->unit, suspect_4ms_step, p_step, S
[all...]
/freebsd-10.0-release/sys/kern/
H A Dsys_process.c1228 * stay stopped until p->p_step is cleared
1236 p->p_step = 1;
1242 msleep(&p->p_step, &p->p_mtx, PWAIT, "stopevent", 0);
1243 } while (p->p_step);
H A Dkern_sig.c2139 p->p_step = 0;
2140 wakeup(&p->p_step);
/freebsd-10.0-release/sys/sys/
H A Dproc.h535 char p_step; /* (c) Process is stopped. */ member in struct:proc

Completed in 82 milliseconds