Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/fs/procfs/
Dprocfs_ioctl.c170 while (p->p_step == 0 && (p->p_flag & P_WEXIT) == 0) { in procfs_ioctl()
182 ps->state = (p->p_step == 0); in procfs_ioctl()
185 ps->why = p->p_step ? p->p_stype : 0; in procfs_ioctl()
186 ps->val = p->p_step ? p->p_xsig : 0; in procfs_ioctl()
190 while (p->p_step == 0 && (p->p_flag & P_WEXIT) == 0) { in procfs_ioctl()
202 ps32->state = (p->p_step == 0); in procfs_ioctl()
205 ps32->why = p->p_step ? p->p_stype : 0; in procfs_ioctl()
206 ps32->val = p->p_step ? p->p_xsig : 0; in procfs_ioctl()
218 if (p->p_step == 0) in procfs_ioctl()
226 p->p_step = 0; in procfs_ioctl()
[all …]
/freebsd-12-stable/contrib/ntp/ntpd/
Drefclock_msfees.c1032 int p_step = ees->this_step; in ees_receive() local
1034 ees->last_steps[p_step] = this_step; in ees_receive()
1035 p= p_step; in ees_receive()
1036 p_step++; in ees_receive()
1037 if (p_step >= LAST_STEPS) p_step = 0; in ees_receive()
1038 ees->this_step = p_step; in ees_receive()
1040 while (p != p_step) { in ees_receive()
1074 #define SV(x) (ees->last_steps[(x + p_step) % LAST_STEPS]) in ees_receive()
1076 ees->unit, suspect_4ms_step, p_step, SV(0), SV(1), SV(2), SV(3), SV(4), SV(5), SV(6), in ees_receive()
1079 ees->unit, p_step, SV(0), SV(1), SV(2), SV(3), SV(4), SV(5), SV(6), in ees_receive()
/freebsd-12-stable/sys/kern/
Dsys_process.c1540 p->p_step = 1;
1549 msleep(&p->p_step, &p->p_mtx, PWAIT, "stopevent", 0);
1550 } while (p->p_step);
Dkern_sig.c2245 p->p_step = 0; in tdsendsignal()
2246 wakeup(&p->p_step); in tdsendsignal()
/freebsd-12-stable/sys/sys/
Dproc.h633 char p_step; /* (c) Process is stopped. */ member