blob: 5e9f9bad5b704e70fc83a1338761a1c762d86590 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
$NetBSD: patch-aw,v 1.2 1998/08/18 10:46:20 agc Exp $
Modify default threading offsets so that standard scan format is correct.
--- lib/thread.tcl 1998/08/17 13:43:05 1.1
+++ lib/thread.tcl 1998/08/17 13:43:15
@@ -141,17 +141,17 @@
return 0
}
-proc Thread_Display { {breakoff 20} {mark "+->"} } {
+proc Thread_Display { {breakoff 30} {mark "+->"} } {
busy Thread_Ftoc 1 $breakoff $mark
}
-proc Thread_DisplayAll { {breakoff 20} {mark "+->"} } {
+proc Thread_DisplayAll { {breakoff 30} {mark "+->"} } {
busy Thread_Ftoc 0 $breakoff $mark
}
-proc Thread_Ftoc { {selected 0} {breakoff 20} {mark "+->"} } {
+proc Thread_Ftoc { {selected 0} {breakoff 30} {mark "+->"} } {
global exwin exmh ftoc msg
#
|