Skip to content

Commit a267585

Browse files
committed
/home/fox/release/dtrace/2009/dtrace-20090531.tar.bz2
1 parent eb8695a commit a267585

17 files changed

Lines changed: 709 additions & 1309 deletions

.release

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
date=Tue May 26 00:02:53 BST 2009
2-
release=dtrace-20090526
3-
build=101
1+
date=Sun May 31 22:09:46 BST 2009
2+
release=dtrace-20090531
3+
build=103

Changes

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
Sun May 31 10:39:20 2009 fox
2+
3+
290* dtrace_linux.c, intr_x86*.S: Add support for INT13 (GPF), so
4+
we can disable ourselves when we run into issues.
5+
6+
289* toxic.c: Add system_call: This is a very special kernel
7+
entry point and if we probe it, we may get a kernel double-fault
8+
because the stack wont be ready for kernel space.
9+
10+
Fri May 29 19:50:52 2009 fox
11+
12+
288* driver/cpu_x86.c: New file - put the single step cpu specific code
13+
in here, from dtrace_linux.c.
14+
15+
Add support for 0xEn opcodes (call/jump/loop instructions).
16+
17+
Thu May 28 23:55:45 2009 fox
18+
19+
287* dtrace_linux.c: Handle the FF .. opcodes (indirect jump/calls).
20+
fbt::__delay: now works on my Ubuntu 32bit kernel.
21+
22+
(Not yet proven for 64bit kernels).
23+
24+
Wed May 27 20:25:44 2009 fox
25+
26+
286* instr_size.c: Workaround for LOCK/REPZ/REPNZ prefix instructions.
27+
128
Mon May 25 21:44:26 2009 fox
229

330
285* fbt_linux.c, dtrace_linux.c: Enable more 32-bit instructions

cmd/dtrace/dtrace.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1858,7 +1858,6 @@ main(int argc, char *argv[])
18581858

18591859
if (sigaction(SIGINT, NULL, &oact) == 0 && oact.sa_handler != SIG_IGN)
18601860
(void) sigaction(SIGINT, &act, NULL);
1861-
18621861
if (sigaction(SIGTERM, NULL, &oact) == 0 && oact.sa_handler != SIG_IGN)
18631862
(void) sigaction(SIGTERM, &act, NULL);
18641863
#if !defined(sun)

driver/Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,4 @@
11

2-
# no longer needed.
3-
# cpu_32bit.o
4-
# cpu_64bit.o
52
dtracedrv-objs := \
63
ctf_subr.o \
74
ctf_types.o \
@@ -11,6 +8,7 @@ dtracedrv-objs := \
118
ctf_open.o \
129
ctf_lookup.o \
1310
ctl.o \
11+
cpu_x86.o \
1412
cyclic_linux.o \
1513
dis_tables.o \
1614
dtrace.o \

0 commit comments

Comments
 (0)