ktrace.c (0c4d24a78fbd9f937393e4fdf3bbb07c9b762c03) | ktrace.c (62f882d620bdfa783c01626012d69f468ba34e28) |
---|---|
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 --- 52 unchanged lines hidden (view full) --- 61 62void no_ktrace __P((int)); 63void usage __P((void)); 64 65main(argc, argv) 66 int argc; 67 char **argv; 68{ | 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 --- 52 unchanged lines hidden (view full) --- 61 62void no_ktrace __P((int)); 63void usage __P((void)); 64 65main(argc, argv) 66 int argc; 67 char **argv; 68{ |
69 extern int optind; 70 extern char *optarg; | |
71 enum { NOTSET, CLEAR, CLEARALL } clear; 72 int append, ch, fd, inherit, ops, pid, pidset, trpoints; 73 char *tracefile; 74 mode_t omask; 75 struct stat sb; 76 77 clear = NOTSET; 78 append = ops = pidset = inherit = 0; --- 125 unchanged lines hidden --- | 69 enum { NOTSET, CLEAR, CLEARALL } clear; 70 int append, ch, fd, inherit, ops, pid, pidset, trpoints; 71 char *tracefile; 72 mode_t omask; 73 struct stat sb; 74 75 clear = NOTSET; 76 append = ops = pidset = inherit = 0; --- 125 unchanged lines hidden --- |