Deleted Added
full compact
subr.c (16509) subr.c (18399)
1/*-
2 * Copyright (c) 1988, 1993
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

--- 22 unchanged lines hidden (view full) ---

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 6/6/93";
37#endif
38static const char rcsid[] =
1/*-
2 * Copyright (c) 1988, 1993
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

--- 22 unchanged lines hidden (view full) ---

31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35#if 0
36static char sccsid[] = "@(#)subr.c 8.1 (Berkeley) 6/6/93";
37#endif
38static const char rcsid[] =
39 "$Id$";
39 "$Id: subr.c,v 1.2 1996/06/19 09:56:30 jraynard Exp $";
40#endif /* not lint */
41
42#include <sys/param.h>
43#include <sys/file.h>
44#include <sys/user.h>
45#include <sys/proc.h>
46#include <sys/time.h>
47#include <sys/ktrace.h>

--- 16 unchanged lines hidden (view full) ---

64 facs |= KTRFAC_NAMEI;
65 break;
66 case 'i':
67 facs |= KTRFAC_GENIO;
68 break;
69 case 's':
70 facs |= KTRFAC_PSIG;
71 break;
40#endif /* not lint */
41
42#include <sys/param.h>
43#include <sys/file.h>
44#include <sys/user.h>
45#include <sys/proc.h>
46#include <sys/time.h>
47#include <sys/ktrace.h>

--- 16 unchanged lines hidden (view full) ---

64 facs |= KTRFAC_NAMEI;
65 break;
66 case 'i':
67 facs |= KTRFAC_GENIO;
68 break;
69 case 's':
70 facs |= KTRFAC_PSIG;
71 break;
72 case 'u':
73 facs |= KTRFAC_USER;
74 break;
72 case 'w':
73 facs |= KTRFAC_CSW;
74 break;
75 case '+':
76 facs |= DEF_POINTS;
77 break;
78 default:
79 return (-1);

--- 34 unchanged lines hidden ---
75 case 'w':
76 facs |= KTRFAC_CSW;
77 break;
78 case '+':
79 facs |= DEF_POINTS;
80 break;
81 default:
82 return (-1);

--- 34 unchanged lines hidden ---