- 04 Dec, 2019 2 commits
-
-
Daniel Kochmański authored
si_complex_float_p and si_complex_float are referenced in tests, to allow clean compilation put them in externa.h.
-
Daniel Kochmański authored
Symbols must be associated with functions following an uniform naming scheme because si:mangle-name does not return pre-existing string. See #534 for details. This is a temporary solution.
-
- 01 Dec, 2019 1 commit
-
-
Marius Gerbershagen authored
sockets: recvfrom: cast sockaddr_in* to sockaddr* explicitly See merge request embeddable-common-lisp/ecl!169
-
- 25 Nov, 2019 1 commit
-
-
Daniel Kochmański authored
Apparently CXX compiler needs this. Steps to reproduce the issue: ./configure --with-cxx && make With this fix the problem is gone.
-
- 22 Nov, 2019 2 commits
-
-
Daniel Kochmański authored
-
- this improvement was suggested before in the comment - fix print-object for descriptors which are not bound
-
- 17 Nov, 2019 1 commit
-
-
Marius Gerbershagen authored
C inline information is saved in +default-machine+, which was previously a constant. However, the value assigned to +default-machine+ is recomputed during load and compile time. Technically, assigning a constant a new value which is not eql to the old one is undefined behaviour in the ANSI standard. What ECL did was simply to reassign the constant when compiling cmpc-machine.lsp. However, this meant that the inline information which was added to +default-machine+ when loading sysfun.lsp was lost. Thus, all ECL source files compiled after cmpc-machine.lsp were compiled without inline information. We prevent this by using an ordinary variable *default-machine* instead of a constant.
-
- 16 Nov, 2019 1 commit
-
-
Marius Gerbershagen authored
Fixes #527.
-
- 02 Nov, 2019 1 commit
-
-
Daniel Kochmański authored
Minor improvements to atomic operations Closes #460 See merge request embeddable-common-lisp/ecl!165
-
- 31 Oct, 2019 1 commit
-
-
Marius Gerbershagen authored
Allowing e.g. (atomic-incf *foo*) instead of requiring (atomic-incf (symbol-value '*foo*)) makes the interface easier to use and more consistent with sbcl.
-
- 30 Oct, 2019 1 commit
-
-
Daniel Kochmański authored
Fix a couple of minor mixups in the docs See merge request embeddable-common-lisp/ecl!166
-
- 26 Oct, 2019 1 commit
-
-
Marius Gerbershagen authored
Previously we were only creating atomic accessors when explicitely told so, which is problematic for compatibility reasons, since it requires compatibility libraries to define their own versions of defstruct just for ECL. This change is backwards compatible.
-
- 25 Oct, 2019 1 commit
-
-
thijs authored
-
- 29 Sep, 2019 1 commit
-
-
Marius Gerbershagen authored
-expt of an integer and rational lead to a wrong type error in ecl_expt_float -type contagion of (expt 0 +y) did not work properly -there were several useless type checks in places where previous function calls already ensured that objects were numbers Fixes #526.
-
- 02 Sep, 2019 2 commits
-
-
Marius Gerbershagen authored
Merge branch 'fix-socket-receive-to-return-remote-addr' of https://gitlab.com/thijso/ecl into develop
-
Marius Gerbershagen authored
Fix socket-receive to match the documentation; set MSG_TRUNC when socket type is :datagram See merge request embeddable-common-lisp/ecl!162
-
- 31 Aug, 2019 2 commits
- 26 Aug, 2019 1 commit
-
-
Daniel Kochmański authored
Fix 476 Closes #476 See merge request embeddable-common-lisp/ecl!161
-
- 25 Aug, 2019 6 commits
-
-
Marius Gerbershagen authored
Fixes out of memory errors when creating lots of threads on windows, joining them and then again creating many threads (see e.g. the atomic-incf/decf tests).
-
Marius Gerbershagen authored
process.woken_up was not set to nil before calling condition. This could lead to threads not waiting correctly on barriers and consequently to mp:process-join returning earlier than it should.
-
Marius Gerbershagen authored
The file descriptor for the error output in the parent process was set to the wrong value.
-
Marius Gerbershagen authored
The nul file on windows can't be opened with O_TRUNC flag.
-
Marius Gerbershagen authored
This is not needed since windows includes feclearexcept. Furthermore, it leads to segmentation faults in the ieee-fp tests.
-
Marius Gerbershagen authored
-
- 20 Aug, 2019 3 commits
-
-
Marius Gerbershagen authored
linker-cc for other compilers includes the libpath in the linker options, therefore for consistency we need it here too.
-
Marius Gerbershagen authored
Instead we return an invalid value (-1 for ecl_file_column and nil for si_file_column). All users of these functions already deal correctly with invalid values. Fixes #309.
-
Marius Gerbershagen authored
-
- 19 Aug, 2019 3 commits
-
-
Marius Gerbershagen authored
-
Marius Gerbershagen authored
Statements such as (multiple-value-bind () :foo) returned :foo instead of nil (see the multiple-value-bind.11-13 tests in the ansi-test suite).
-
Marius Gerbershagen authored
Only add fill style newline for blanks that don't follow a ~ newline directive (see the format.logical-block.23 test in the ansi-test suite).
-
- 18 Aug, 2019 2 commits
-
-
Marius Gerbershagen authored
The previous implementation did not respect *print-circle*. Fixes #476.
-
Marius Gerbershagen authored
-
- 16 Aug, 2019 2 commits
-
-
Daniel Kochmański authored
Make all numeric functions return sensible values for infinity/NaN Closes #477 See merge request embeddable-common-lisp/ecl!160
-
Daniel Kochmański authored
Fix 513 2nd try Closes #514 See merge request embeddable-common-lisp/ecl!159
-
- 14 Aug, 2019 5 commits
-
-
Marius Gerbershagen authored
-
Marius Gerbershagen authored
-
Marius Gerbershagen authored
Works better for edge cases such as x + I*∞, which otherwise would lead to a complex with NaN real part.
-
Marius Gerbershagen authored
-
Marius Gerbershagen authored
-