Commit Briefs

5d03af6557 Russ Cox

fix INSTALL warnings

R=rsc http://codereview.appspot.com/6258060


4a000a28d3 Russ Cox

merge


443d628838 Russ Cox

libmach, acid, db: 64-bit support


0c9c620f39 Russ Cox

fix type-punned pointer warnings from gcc

R=rsc http://codereview.appspot.com/396042



281c90a5be rsc

more pthread


4f2ac1b76b rsc

Working on better handling of multithreading in general

and core dumps in particular. See notes: new types: register is something that when dereferenced gives you the registers. the Ureg is no longer mapped at 0. refconst is something that gives a constant when dereferenced. new builtin register("AX") creates register values new builtin refconst(0x123) creates refconst values new builtin var("foo") is equivalent to the variable foo (it returns foo but can also be used as the lhs of an assignment). new acid function getregs() returns a list of the current values of registers. new acid function setregs() sets the current registers to those values. note that getregs and setregs operate on register locations, not the register values themselves. new acid function resetregs() sets registers to register("AX"), etc. new acid function clearregs() sets all registers to constant -1. the default register settings are as in resetregs(), not small numbers. new acid variables coretext, pids, systype, corefile, cmdline. new behavior: local variable lookup, stk, etc., use the acid values of registers (*PC, *SP, and so on), so the thread support code can change the context completely. unary + is applicable to more data types and prints more often.


a0f1e21ff9 rsc

make things work on SunOS


e637c944fe rsc

i hate []


564ca709d0 rsc

acid