pstat.c (c3328b2ab87a66753fdb4651e98e26f735f70093) | pstat.c (c0086bf20280407ccd3ed5a4ef984ce90f56b9ab) |
---|---|
1/*- 2 * Copyright (c) 1980, 1991, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * Copyright (c) 2002 Networks Associates Technologies, Inc. 5 * All rights reserved. 6 * 7 * Portions of this software were developed for the FreeBSD Project by 8 * ThinkSec AS and NAI Labs, the Security Research Division of Network --- 301 unchanged lines hidden (view full) --- 310 { TF_HIWAT_OUT, 'o' }, 311 312 { TF_STOPPED, 'S' }, 313 { TF_EXCLUDE, 'X' }, 314 { TF_BYPASS, 'l' }, 315 { TF_ZOMBIE, 'Z' }, 316 { TF_HOOK, 's' }, 317 | 1/*- 2 * Copyright (c) 1980, 1991, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * Copyright (c) 2002 Networks Associates Technologies, Inc. 5 * All rights reserved. 6 * 7 * Portions of this software were developed for the FreeBSD Project by 8 * ThinkSec AS and NAI Labs, the Security Research Division of Network --- 301 unchanged lines hidden (view full) --- 310 { TF_HIWAT_OUT, 'o' }, 311 312 { TF_STOPPED, 'S' }, 313 { TF_EXCLUDE, 'X' }, 314 { TF_BYPASS, 'l' }, 315 { TF_ZOMBIE, 'Z' }, 316 { TF_HOOK, 's' }, 317 |
318 /* Keep these together -> 'bi' and 'bo'. */ 319 { TF_BUSY, 'b' }, 320 { TF_BUSY_IN, 'i' }, 321 { TF_BUSY_OUT, 'o' }, 322 |
|
318 { 0, '\0'}, 319}; 320 321static void 322ttyprt(struct xtty *xt) 323{ 324 int i, j; 325 char *name; --- 254 unchanged lines hidden --- | 323 { 0, '\0'}, 324}; 325 326static void 327ttyprt(struct xtty *xt) 328{ 329 int i, j; 330 char *name; --- 254 unchanged lines hidden --- |