From Russ Cox:
authorwarren.toomey <warren.toomey@44b2186c-a14b-0410-8c95-595313601b93>
Mon, 19 May 2008 13:46:53 +0000 (13:46 +0000)
committerwarren.toomey <warren.toomey@44b2186c-a14b-0410-8c95-595313601b93>
Mon, 19 May 2008 13:46:53 +0000 (13:46 +0000)
commit9e09fb993898ff4c40538ccff92cfe5d80b7bd38
tree60922b00cd465fbbd09513bdca092facc4710c07
parentc24919cc576c731d001c97f07f9a767fd25e431b
From Russ Cox:
In v7trap.c, the case S_BREAK body is wrong:

<       i=0; break;
---
>       i=sarg1; break;

since (in V6 at least) the break system
call does not return anything -- it leaves r0
untouched.  If break zeros r0, then db mysteriously
fails to load the symbols from binaries.
v7trap.c