- Dec 31, 1997
-
-
dtc authored
with-scheduling, otherwise debugging can be rather problematic - could use some more thought.
-
dtc authored
stacks rather than inheriting those of the current stack group. The alien stack, the eval stack, and the shallow bindings are allocated afresh for the new stack-group, but some work on the VOPs is needed to handle the control stack. Initial bindings for the following symbols are setup by default: * ** *** - + ++ +++ /// // /. Exploit this new option during the creation of new processes. The user visible change is that new processes now have a fresh set of bindings rather than inheriting those of the parent process. During the unwinding and rebinding of the binding stacks there is the possibility that *interrupts-enabled* will briefly set to true which may cause an unexpected interrupt. For now mask the interrupts during the binding stack switch; a better fix may be to implement these functions in assembly routines using pseudo-atomic to block interrupts.
-
- Dec 30, 1997
-
-
dtc authored
-
dtc authored
all the processes giving them some chance to unwinding, before shutting down multi-processing. Can be restarted by init-multi-processing. Ensure that processes are activated when sent an interrupt by destroy-process, otherwise inactive processes can't be destroyed.
-
dtc authored
page; null pointers are common so this is a handy special case.
-
dtc authored
possible from the initial process). When a process throws to %end-of-the-world the exit value is noted in the *quitting-lisp* variable and further process creation is blocked. Have the idle loop try to gracefully destroy all the processes when *quitting-lisp* before exiting.
-
- Dec 29, 1997
-
-
dtc authored
handled by sub-serve-event.
-
dtc authored
server is waiting. This is used with the MP support to periodically call process-yield.
-
dtc authored
process switch: at process exits and processes interrupts.
-
dtc authored
yield, and at each process switch update the outgoing processes accrued real and run times. Three new functions: process-real-time, process-run-time, and process-idle-time. Add a verbose option to show-processes to prints these times.
-
- Dec 28, 1997
-
-
dtc authored
runnable processes. Take care not to schedule inactive processes.
-
- Dec 27, 1997
-
-
dtc authored
descriptor to an (unsigned-byte 32) and thus limited this code to file descriptors less than 32, this was probably done to limit consing. Replace these with unix-fast-select, allowing the use of file descriptors upto fd-setsize (doesn't cons). Tested with over 128 FDs running CL-HTTP on FreeBSD.
-
- Dec 18, 1997
-
-
dtc authored
type union and intersection which were all doing the opposition of what they should have. E.g. The intersection of (double-float 0d0) and (double-float (0d0)) was returning a bound of 0d0 whereas (0d0) is more restrictive.
-
dtc authored
-
dtc authored
arrays; the number of bits is 128 in this case not (integer 1 64).
-
- Dec 17, 1997
-
-
dtc authored
type error.
-
- Dec 16, 1997
-
-
dtc authored
mt19937 code), and noting that the author of the mt19937 algorithm gave us permission to place this implementation in the public domain.
-
- Dec 15, 1997
- Dec 13, 1997
-
-
dtc authored
in this package.
-
- Dec 12, 1997
-
-
dtc authored
Slightly faster version of %random-double-float for the x86 port. Don't push :random-mt19937 onto *features* here.
-
- Dec 11, 1997
-
-
dtc authored
default for the x86 port.
-
- Dec 07, 1997
- Dec 05, 1997
-
-
dtc authored
the control stack in sub-access-debug-var-slot.
-
- Dec 04, 1997
-
-
dtc authored
-
- Dec 03, 1997
-
-
dtc authored
(setf get-context-values). The return addresses are now stored in sap-reg and sap-stack SCs, so there is now need to detect alternate references to these locations and map them to the sap-ref and sap-stack locations.
-
- Dec 01, 1997
-
-
dtc authored
elsewhere; tested by Raymond Toy.
-
- Nov 30, 1997
-
-
pw authored
-
- Nov 29, 1997
- Nov 28, 1997
-
-
dtc authored
use encapsulation by default.
-
- Nov 25, 1997
-
-
dtc authored
improvement in reliability necessary for breakpoint and single stepping to have a chance, and has been tested in the experimental code and works on FreeBSD and Linux. The code object for a given return address in now located with the help of the GC support function component_ptr_from_pc which can reliably locate the code objects. This uses a forward search of the heap so is rather slow - some caching will be needed for better performance. The stack parsing has been re-written using a backtracking search to improve the chance of finding a valid frame path given that the control changes between C and Lisp conventions. The x86-lra hack is no longer necessary (was unreliable anyway) allowing x86 code to be more compact. The return address is now handled as a SAP which is acceptable because the code doesn't move with CGC, and GENCGC ensures that code objects in the dynamic heap with return addresses on the stack are not moved. However there are known problems under GENCGC when return addresses are move off the stack during some breakpoint operations in which case the code object may move.
-
- Nov 22, 1997
-
-
dtc authored
debugger. Add a few more assertions to check that the current process and stack group are consistent.
-
- Nov 21, 1997
-
-
dtc authored
compiled with support.
-
dtc authored
that the symbol slot is actually a symbol as this slot may be zero if a bind or unbind is interrupted - have it ignore these for now so that it as least proceeds rather than giving a SIGSEGV fault. Re-write of make-stack-group and stack-group-resume taking care not to mess with unwind-protect during a stack group switch. No longer need to disable the GENCGC pointer filter when starting the SIGALRM yield interrupt because the object allocation should now be interrupt safe now. Have the SIGALRM handler return quickly if the interrupt nesting is too great.
-
- Nov 18, 1997