Skip to content

Commit

Permalink
remove reference to pvalues
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Palmucci committed Aug 28, 2009
1 parent ccbac8f commit e6f41f6
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions future.lisp
Expand Up @@ -186,13 +186,11 @@ evaluated values. Blocks if a future is still running."
(push e cur-chunk)
(incf cur-count)))
(cond ((>= cur-count chunk-size)
(jp:pvalues cur-count chunk-size)
(push cur-chunk chunks)
(setq cur-chunk nil
cur-count (- cur-count chunk-size)))))
(cond (cur-chunk
(push cur-chunk chunks)))
(jp:pvalues chunk-size chunks)

;;evaluate the chunks in child processes
(let ((results (get-future-value
Expand Down

0 comments on commit e6f41f6

Please sign in to comment.