Remove debug-deinit, unused.
authorStas Boukarev <stassats@gmail.com>
Fri, 23 Aug 2013 22:32:00 +0000 (02:32 +0400)
committerStas Boukarev <stassats@gmail.com>
Wed, 28 Aug 2013 14:12:38 +0000 (18:12 +0400)
Its body consist of
;; Nothing to do right now. Once there was, maybe once there
;; will be again.

Once there is something to do, it can easily be put back.

package-data-list.lisp-expr
src/code/debug.lisp
src/code/save.lisp

index 7e5e9b9..dd6870d 100644 (file)
@@ -1989,7 +1989,6 @@ is a good idea, but see SB-SYS re. blurring of boundaries."
                "STREAM-COLD-INIT-OR-RESET"
 
                ;; Cleanups to run before saving a core
-               "DEBUG-DEINIT"
                "FLOAT-DEINIT"
                "FOREIGN-DEINIT"
                "PROFILE-DEINIT"
index 0b49899..1f63348 100644 (file)
@@ -1619,12 +1619,6 @@ and LDB (the low-level debugger).  See also ENABLE-DEBUGGER."
 \f
 ;;;; source location printing
 
-;;; Stuff to clean up before saving a core
-(defun debug-deinit ()
-  ;; Nothing to do right now. Once there was, maybe once there
-  ;; will be again.
-  )
-
 (defun code-location-source-form (location context &optional (errorp t))
   (let* ((start-location (maybe-block-start-location location))
          (form-num (sb!di:code-location-form-number start-location)))
index c2dd588..8d414ea 100644 (file)
@@ -200,7 +200,6 @@ sufficiently motivated to do lengthy fixes."
     (error "Cannot save core with multiple threads running."))
   (float-deinit)
   (profile-deinit)
-  (debug-deinit)
   (foreign-deinit)
   (stream-deinit)
   (deinit-finalizers)