- Timestamp:
- May 6, 2008, 10:41:26 AM (17 years ago)
- Location:
- branches/ia32/level-1
- Files:
-
- 3 edited
-
l1-aprims.lisp (modified) (1 diff)
-
l1-events.lisp (modified) (1 diff)
-
l1-lisp-threads.lisp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/ia32/level-1/l1-aprims.lisp
r8901 r9383 193 193 (unless (typep index 'unsigned-byte) 194 194 (report-bad-arg index 'unsigned-byte)) 195 (do* ((n index (- n most-positive-fixnum)))195 (do* ((n index (- n target::target-most-positive-fixnum))) 196 196 ((typep n 'fixnum) (nthcdr n list)) 197 (unless (setq list (nthcdr most-positive-fixnum list))197 (unless (setq list (nthcdr target::target-most-positive-fixnum list)) 198 198 (return)))))) 199 199 -
branches/ia32/level-1/l1-events.lisp
r6938 r9383 177 177 (when task 178 178 (if (setq *%periodic-tasks%* (delete task *%periodic-tasks%*)) 179 (let* ((min-ticks most-positive-fixnum))179 (let* ((min-ticks target::target-most-positive-fixnum)) 180 180 (dolist (other *%periodic-tasks%* 181 181 (set-periodic-task-interval (/ min-ticks (float *ticks-per-second*)))) -
branches/ia32/level-1/l1-lisp-threads.lisp
r8372 r9383 420 420 (cons function args))) 421 421 422 (defun thread-enable (thread termination-semaphore allocation-quantum &optional (timeout most-positive-fixnum))422 (defun thread-enable (thread termination-semaphore allocation-quantum &optional (timeout target::target-most-positive-fixnum)) 423 423 (let* ((tcr (or (lisp-thread.tcr thread) (new-tcr-for-thread thread)))) 424 424 (with-macptrs (s)
Note:
See TracChangeset
for help on using the changeset viewer.
