Skip to content
Snippets Groups Projects
  1. Jan 21, 1998
  2. Jan 20, 1998
  3. Jan 19, 1998
  4. Jan 18, 1998
  5. Jan 17, 1998
  6. Jan 16, 1998
  7. Jan 15, 1998
  8. Jan 14, 1998
  9. Jan 13, 1998
    • dtc's avatar
      The alien object finalizer was being placed on the alien info, but · a04bd1a5
      dtc authored
      this info may be shared among many alien objects making cancellation
      of the finalisation upon alien object deallocation
      problematic. Probably for this reason this cancellation had been
      disabled, however this often resulted in objects being freed twice and
      possibly live objects being freed. To fix this, the finalizer is now
      placed on the alien object rather than the alien info, and this
      finalizer is cancelled before the deallocation of the alien object to
      prevent repeated freeing. Problem tracked down thanks to a bug report
      and some experimentation by Andrei V. Elkin.
      a04bd1a5
    • dtc's avatar
      Have the lisp connection listener search forward for an available · 2a747380
      dtc authored
      port, and add at least some simple password protection.
      2a747380
    • dtc's avatar
      Re-seed the *random-state* as an after save initialisation. · d2b81e7a
      dtc authored
      Move the loading of the random number generator until after the
      loading of save.lisp so that *after-save-initializations* is
      initialised.
      d2b81e7a
  10. Jan 12, 1998
  11. Jan 11, 1998
  12. Jan 10, 1998
    • dtc's avatar
      The aref derive type optimiser should have been returning the upgraded · 59b281ce
      dtc authored
      element type rather than a possibly more specific declared element
      type. When there is only a single use of the continuation the type is
      also asserted to be the declared element type. This can pickup errors
      such as reading an uninitialised element type is not of the declared
      type.
      59b281ce
  13. Jan 09, 1998
    • dtc's avatar
      Generate a compiler note if the default initial element for make-array · f437871a
      dtc authored
      is not a subtype of the element-type. According to ANSI CL the result
      of accessing uninitialised elements is undefined, and currently in
      CMUCL it can cause problems not detect in safe code when the default
      element not a subtype of the element-type - at least a compiler note
      is generated now.
      f437871a
  14. Jan 08, 1998
Loading