(hash (compute-key-hash table key)))
(let loop ((entries (vector-ref buckets hash)))
(cond ((null? entries)
- (without-interrupts
+ (without-interruption
(lambda ()
(vector-set! buckets
hash
(if (not (table-needs-rehash? table))
hash
(begin
- (without-interrupts (lambda () (rehash-table! table)))
+ (without-interruption (lambda () (rehash-table! table)))
(loop))))))
(define-integrable (eq-hash-mod key modulus)
(define-integrable minimum-size 4)
-(define-integrable (without-interrupts thunk)
- (let ((interrupt-mask (set-interrupt-enables! interrupt-mask/gc-ok)))
- (thunk)
- (set-interrupt-enables! interrupt-mask)
- unspecific))
-
(define-integrable (weak-cons car cdr)
(system-pair-cons (ucode-type weak-cons) car cdr))
\ No newline at end of file