pstat.c (0429e37ade0f33fd1159e425bfa5a5d531b3e8a1) | pstat.c (7c0e6e50e13883bbe152fb390f14316abeb7f149) |
---|---|
1/*- 2 * Copyright (c) 1980, 1991, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 256 unchanged lines hidden (view full) --- 265 case 'T': 266 totalflag = 1; 267 break; 268 case 't': 269 ttyflag = 1; 270 break; 271 case 'v': 272 case 'i': /* Backward compatibility. */ | 1/*- 2 * Copyright (c) 1980, 1991, 1993, 1994 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 256 unchanged lines hidden (view full) --- 265 case 'T': 266 totalflag = 1; 267 break; 268 case 't': 269 ttyflag = 1; 270 break; 271 case 'v': 272 case 'i': /* Backward compatibility. */ |
273 fprintf(stderr, "vnode mode not supported\n"); 274 exit(1); | 273 errx(1, "vnode mode not supported"); |
275#if 0 276 vnodeflag = 1; 277 break; 278#endif 279 default: 280 usage(); 281 } 282 argc -= optind; --- 761 unchanged lines hidden --- | 274#if 0 275 vnodeflag = 1; 276 break; 277#endif 278 default: 279 usage(); 280 } 281 argc -= optind; --- 761 unchanged lines hidden --- |