Raymond Toy pushed to branch rtoy-fix-40-map-heap-higher at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • src/bootfiles/21b/boot-2017-04.lispsrc/bootfiles/21b/boot-2017-04-1.lisp
    ... ... @@ -17,9 +17,12 @@
    17 17
           #x5f000000)
    
    18 18
     
    
    19 19
     #+linux
    
    20
    -(defconstant vm::target-foreign-linkage-space-start
    
    21
    -  (c:backend-foreign-linkage-space-start c::*target-backend*))
    
    20
    +(handler-bind
    
    21
    +    ((error (lambda (c)
    
    22
    +	      (declare (ignore c))
    
    23
    +	      (invoke-restart 'continue))))
    
    24
    +  (defconstant vm::target-foreign-linkage-space-start
    
    25
    +    (c:backend-foreign-linkage-space-start c::*target-backend*))
    
    22 26
     
    
    23
    -#+linux
    
    24
    -(defconstant vm::target-dynamic-space-start
    
    25
    -  #x60000000)
    27
    +  (defconstant vm::target-dynamic-space-start
    
    28
    +    #x60000000))