- Dec 27, 2017
-
-
Raymond Toy authored
-
- Dec 02, 2017
-
-
Raymond Toy authored
-
- Nov 16, 2017
-
-
Raymond Toy authored
[skip-ci]
-
Raymond Toy authored
-
- Nov 05, 2017
-
-
Raymond Toy authored
Compiler warns that indentation makes the scope of the for loop unclear. Indent the code to make it clear.
-
Raymond Toy authored
The char buffer size is potentially too small and it's possible to write past the end of the buffer with a large integer. Fixes a compiler warning.
-
- Oct 28, 2017
-
-
Raymond Toy authored
-
Raymond Toy authored
-
- Oct 16, 2017
-
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
* Strike out the closed tickets * Color (maybe?) the WIP in red.
-
Raymond Toy authored
-
- Oct 15, 2017
-
-
Raymond Toy authored
-
Raymond Toy authored
-
Raymond Toy authored
Use `-B boot-21c` to bootstrap the release from 21b to 21c. - 21b/boot-21c.lisp: - Add boot-21c.lisp to update the version number - compiler/byte-comp.lisp - Update the actual version number
-
- Oct 07, 2017
-
-
Raymond Toy authored
Because we include stdio.h now, Solaris defines stdin, stdout, and stderr in a way that they can't be used to name the args to the spawn function. Hence rename these args.
-
Raymond Toy authored
[ci skip]
-
Raymond Toy authored
[ci skip]
-
Raymond Toy authored
-
- Sep 30, 2017
-
-
Raymond Toy authored
-
Raymond Toy authored
This is basically the solution proposed by Elias Pipping with a few minor tweaks. - In `run-program`, don't merge `program` with the "path:" search-list. `spawn` will handle this. - In `spawn`, if the first call to execve fails, instead of trying "/bin/sh", use "/usr/bin/env" which will use the user's PATH if necessary to find the program.
-
- Sep 23, 2017
-
-
Raymond Toy authored
-
- Sep 16, 2017
-
-
Raymond Toy authored
-
Raymond Toy authored
Adds docstrings for the exported process accessors: `process-pid`, `process-exit-code`, `process-core-dumped`, `process-pty`, `process-input`, `process-output`, `process-error`, `process-status-hook`, `process-plist`.
-
Raymond Toy authored
`wait3` is removed along with alien routine and the constants.
-
Raymond Toy authored
- If `waidpid` returns 0 or -1, we should return. - Make the fprintf message a bit clearer on what's happening when we have some kind of status that we didn't handle.
-
Raymond Toy authored
- process-alive-p should return T for continued processes - Simplify prog-status slightly by making the status code array start :signaled instead of nil. - Update prog_status with enum to specify the codes to make it clearer what they mean and to make it clearer that it matches the expectations in prog-status.
-
- Sep 09, 2017
-
-
Raymond Toy authored
The main problem is that we weren't calling wait3 with WCONTINUED so that we would be signaled when the process continues. And we also need to check that result of wait call was WCONTINUED> Replace the wait3 routine with a C routine (prog_status) so we don't have to deal with the OS-specific flags. This function basically returns what the lisp function wait3 did. Use this function in GET-PROCESSES-STATUS-CHANGES. - runprog.c: - Add prog_status - run-program.lisp: - Use prog_status instead of wait3 - issues.lisp: - Add basic test
-
- Aug 31, 2017
-
-
Raymond Toy authored
Add braces around the else clause that's indented as if it were part of the else clause. Inspection of the algorithm indicates that this is probably the intended code and in this case doesn't change what gets executed because the following statements would have been anyway. Also verified a few random values that `(asin x)` and `(asin (float x 1w0))` produce the same values. Only need to test 2^-27 <= x < 0.5.
-
- Aug 29, 2017
-
-
Raymond Toy authored
-
Raymond Toy authored
Changing defconstant's signal an error. Add a handler-bind to restart and continue with the changed values.
-
Raymond Toy authored
This is a workaround for issue #40. By moving the start of the heap to a higher address, we can still run on older systems (albeit with reduced max heap size), and run on newer systesm where the C code is now mapped at or overlapping the (old) heap start. Arbitrarily choose 0x60000000 as a compromise. This also requires moving the foreign linkage start to a different address because the old address overlaps the new C area. Ideally, we could fix this if we could map the heap wherever the OS wants to put it, but we're not there yet. Use boot-2017-04.lisp to bootstrap this change from the 2017-04 snapshot.
-
- Aug 27, 2017
-
-
Raymond Toy authored
If we get dynamic space lossage, print out the actual address and the expected addresses for the dynamic space so we can see what happened. This is really useful if you change the dynamic space address but didn't update everything correctly.
-
- Apr 08, 2017
-
- Apr 07, 2017
-
-
Raymond Toy authored
-
Raymond Toy authored
-
- Mar 22, 2017
-
-
Fred Gilham authored
-
Fred Gilham authored
-
- Mar 05, 2017
-
-
Raymond Toy authored
Use boot-2017-01-1.lisp to bootstrap this change You'll still have to use the CLOBBER-IT restart when loading new-assem in the first build. Afterwards, it should be fine.
-
- Jan 29, 2017
-
-
Raymond Toy authored
-