Changeset 7622
- Timestamp:
- 11/09/07 16:41:47 (4 years ago)
- Files:
-
- 1 modified
-
branches/working-0710/ccl/level-0/l0-numbers.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/working-0710/ccl/level-0/l0-numbers.lisp
r7442 r7622 1715 1715 1716 1716 (defun init-random-state-seeds () 1717 (let* ((ticks (ldb (byte 32 0) (get-internal-real-time))) 1718 (high (ldb (byte 16 16) ticks)) 1717 (let* ((ticks (ldb (byte 32 0) (+ (mixup-hash-code (%current-tcr)) 1718 (primary-ip-interface-address) 1719 (mixup-hash-code 1720 (logand (get-internal-real-time) 1721 (1- most-positive-fixnum)))))) 1722 (high (ldb (byte 16 16) (if (zerop ticks) #x10000 ticks))) 1719 1723 (low (ldb (byte 16 0) ticks))) 1720 1724 (declare (fixnum high low))
