Changeset 6028
- Timestamp:
- Mar 12, 2007, 3:59:45 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/ccl/level-1/l1-clos-boot.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ccl/level-1/l1-clos-boot.lisp
r5945 r6028 560 560 spec))) 561 561 562 (defglobal *class-wrapper-random-state* (make-random-state)) 563 564 (defun new-class-wrapper-hash-index () 565 ;; mustn't be 0 566 (the fixnum (1+ (the fixnum (random target::target-most-positive-fixnum *class-wrapper-random-state*))))) 562 (let* ((class-wrapper-random-state (make-random-state)) 563 (class-wrapper-random-state-lock (make-lock))) 564 565 (defun new-class-wrapper-hash-index () 566 ;; mustn't be 0 567 (with-lock-grabbed (class-wrapper-random-state-lock) 568 (the fixnum (1+ (the fixnum (random target::target-most-positive-fixnum class-wrapper-random-state))))))) 569 567 570 568 571 (defun %inner-method-function (method)
Note:
See TracChangeset
for help on using the changeset viewer.
