Make the wchan names of pts(4) fit in top(1).
Just like a similar change we made to the TTY code about half a year ago, make these strings look similar. Suggested by: Jille Timmermans <jille@quis.cx>
This commit is contained in:
parent
7b2c1cab41
commit
41fac4197d
@ -733,8 +733,8 @@ pts_alloc(int fflags, struct thread *td, struct file *fp)
|
||||
|
||||
/* Allocate TTY and softc. */
|
||||
psc = malloc(sizeof(struct pts_softc), M_PTS, M_WAITOK|M_ZERO);
|
||||
cv_init(&psc->pts_inwait, "pts inwait");
|
||||
cv_init(&psc->pts_outwait, "pts outwait");
|
||||
cv_init(&psc->pts_inwait, "ptsin");
|
||||
cv_init(&psc->pts_outwait, "ptsout");
|
||||
|
||||
psc->pts_unit = unit;
|
||||
psc->pts_uidinfo = uid;
|
||||
@ -772,8 +772,8 @@ pts_alloc_external(int fflags, struct thread *td, struct file *fp,
|
||||
|
||||
/* Allocate TTY and softc. */
|
||||
psc = malloc(sizeof(struct pts_softc), M_PTS, M_WAITOK|M_ZERO);
|
||||
cv_init(&psc->pts_inwait, "pts inwait");
|
||||
cv_init(&psc->pts_outwait, "pts outwait");
|
||||
cv_init(&psc->pts_inwait, "ptsin");
|
||||
cv_init(&psc->pts_outwait, "ptsout");
|
||||
|
||||
psc->pts_unit = -1;
|
||||
psc->pts_cdev = dev;
|
||||
|
Loading…
x
Reference in New Issue
Block a user