Skip to content
Snippets Groups Projects
Commit b3b33e58 authored by toy's avatar toy
Browse files

o C functions in backtrace

o PARSE-INTEGER note removed
o rehash-threshold silently set to a minimum of 0.1
o Sparc port with Cheney GC is deprecated and will go away after the
  next release.
o Some typo fixes.
parent 9c9d1180
No related branches found
No related tags found
No related merge requests found
...@@ -77,6 +77,9 @@ New in this release: ...@@ -77,6 +77,9 @@ New in this release:
condition, the user is returned to top-level without warning. condition, the user is returned to top-level without warning.
Use lisp::*reserved-heap-pages* to set the number of pages to Use lisp::*reserved-heap-pages* to set the number of pages to
reserve. reserve.
- C functions are displayed in backtraces now for x86/linux and
sparc. Previously, it just said "Foreign function call land".
(From Helmut Eller.)
* Numerous ANSI compliance fixes: * Numerous ANSI compliance fixes:
- Many bugs in CMUCL's type system detected by Paul Dietz' - Many bugs in CMUCL's type system detected by Paul Dietz'
...@@ -153,7 +156,10 @@ New in this release: ...@@ -153,7 +156,10 @@ New in this release:
- MAKE-STRING-OUTPUT-STREAM accepts :ELEMENT-TYPE. - MAKE-STRING-OUTPUT-STREAM accepts :ELEMENT-TYPE.
- Numerous LOOP fixes. - Numerous LOOP fixes.
- On FreeBSD, CLtS-required floating-point conditions are signaled. - On FreeBSD, CLtS-required floating-point conditions are signaled.
- PARSE-INTEGER skipping over whitespace after a number. - The minimum rehash-threshold is 0.1, and is enforced silently.
This is to prevent overflows and divide-by-zero errors when
creating a hash-table with a too-small rehash-threshold.
- MACROLET now accepts declarations, as prescribed by ANSI CL.
* Numerous bugfixes: * Numerous bugfixes:
- NSET-EXCLUSIVE-OR returns the same results as SET-EXCLUSIVE-OR - NSET-EXCLUSIVE-OR returns the same results as SET-EXCLUSIVE-OR
...@@ -184,7 +190,7 @@ New in this release: ...@@ -184,7 +190,7 @@ New in this release:
similar cases. similar cases.
- GCD sometimes returning a negative value. - GCD sometimes returning a negative value.
- LCM sometimes returning a negative value, or signaling division-by-zero. - LCM sometimes returning a negative value, or signaling division-by-zero.
- FLOAT in sometimes returning a float of the wrong type. - FLOAT sometimes returning a float of the wrong type.
- ROOM should handle the large heaps now without overflowing - ROOM should handle the large heaps now without overflowing
internal counters or signaling type errors. Columns should internal counters or signaling type errors. Columns should
line up better too. line up better too.
...@@ -292,6 +298,9 @@ New in this release: ...@@ -292,6 +298,9 @@ New in this release:
versions of his scripts. Should make building CMUCL easier. versions of his scripts. Should make building CMUCL easier.
* Deprecated features: * Deprecated features:
- EXT:ENCAPSULATE and associated functions; use fwrappers instead. - EXT:ENCAPSULATE and associated functions; use fwrappers instead.
- The sparc port with the Cheney stop-and-copy garbage collector
will no longer be supported after this release. The supported
GC will be gencgc.
This release is not binary compatible with code compiled using CMUCL This release is not binary compatible with code compiled using CMUCL
18e; you will need to recompile FASL files. 18e; you will need to recompile FASL files.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment