patches/gdb/6.3/660-debian_dwarf-cfa-restore.patch
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun May 20 13:48:26 2007 +0000 (2007-05-20)
changeset 112 ea15433daba0
permissions -rw-r--r--
Ah! I finally have a progress bar that doesn't stall the build!
- pipe size in Linux is only 8*512=4096 bytes
- pipe size is not setable
- when the feeding process spits out data faster than the eating
process can read it, then the feeding process stalls after 4KiB
of data sent to the pipe
- for us, the progress bar would spawn a sub-shell every line,
and the sub-shell would in turn spawn a 'date' command.
Which was sloooww as hell, and would cause some kind of a
starvation: the pipe was full most of the time, and the
feeding process was stalled all this time.

Now, we use internal variables and a little hack based onan offset
to determine the elapsed time. Much faster this way, but still
CPU-intensive.
yann@96
     1
Status: Checked in to HEAD after 6.3.
yann@96
     2
yann@96
     3
2004-11-09  Daniel Jacobowitz  <dan@debian.org>
yann@96
     4
yann@96
     5
	* dwarf2-frame.c (dwarf2_frame_state_alloc_regs): Correct allocated
yann@96
     6
	size.
yann@96
     7
yann@96
     8
Index: src/gdb/dwarf2-frame.c
yann@96
     9
===================================================================
yann@96
    10
RCS file: /cvs/src/src/gdb/dwarf2-frame.c,v
yann@96
    11
retrieving revision 1.45
yann@96
    12
diff -u -p -r1.45 dwarf2-frame.c
yann@96
    13
--- src/gdb/dwarf2-frame.c	7 Nov 2004 21:16:11 -0000	1.45
yann@96
    14
+++ src/gdb/dwarf2-frame.c	9 Nov 2004 14:42:52 -0000
yann@96
    15
@@ -162,7 +162,7 @@ dwarf2_frame_state_alloc_regs (struct dw
yann@96
    16
 static struct dwarf2_frame_state_reg *
yann@96
    17
 dwarf2_frame_state_copy_regs (struct dwarf2_frame_state_reg_info *rs)
yann@96
    18
 {
yann@96
    19
-  size_t size = rs->num_regs * sizeof (struct dwarf2_frame_state_reg_info);
yann@96
    20
+  size_t size = rs->num_regs * sizeof (struct dwarf2_frame_state_reg);
yann@96
    21
   struct dwarf2_frame_state_reg *reg;
yann@96
    22
 
yann@96
    23
   reg = (struct dwarf2_frame_state_reg *) xmalloc (size);