Deleted Added
full compact
tst.corruptenv.ksh (278012) tst.corruptenv.ksh (288413)
1#!/usr/bin/ksh
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#

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

64
65main.o: main.c prov.h
66 \$(CC) -c main.c
67
68prov.h: prov.d
69 $dtrace -h -s prov.d
70
71prov.o: prov.d main.o
1#!/usr/bin/ksh
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#

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

64
65main.o: main.c prov.h
66 \$(CC) -c main.c
67
68prov.h: prov.d
69 $dtrace -h -s prov.d
70
71prov.o: prov.d main.o
72 $dtrace -G -32 -s prov.d main.o
72 $dtrace -G -s prov.d main.o
73EOF
74
75cat > prov.d <<EOF
76provider tester {
77 probe entry();
78};
79EOF
80

--- 27 unchanged lines hidden ---
73EOF
74
75cat > prov.d <<EOF
76provider tester {
77 probe entry();
78};
79EOF
80

--- 27 unchanged lines hidden ---