From 0558f0daeb6c41e84e621c0d9a0050faa6bc8223 Mon Sep 17 00:00:00 2001 From: Vladimir Sedach <vsedach@gmail.com> Date: Sun, 6 Feb 2011 20:30:03 -0500 Subject: [PATCH] Updated documentation. --- README | 6 +++++- library.lisp | 5 ++--- scheduler.lisp | 4 ++++ 3 files changed, 11 insertions(+), 4 deletions(-) diff --git a/README b/README index 96b6855..a4e6c5b 100644 --- a/README +++ b/README @@ -85,7 +85,7 @@ function force (future &rest values) => nil macro pexec (&body body) => future - A shorthand for (pcall (lambda () ...)). + Shorthand for (pcall (lambda () ...)) macro plet ((&rest bindings) &body body) @@ -126,3 +126,7 @@ function select-timeout (timeout &rest futures) => future or nil macro pfuncall (function &rest args) => result Evaluates args in parallel before funcalling the given function on them. + +function touch (x) => value + + If x is a future, yields its value, otherwise returns x. diff --git a/library.lisp b/library.lisp index a2a5630..1995005 100644 --- a/library.lisp +++ b/library.lisp @@ -1,7 +1,7 @@ (in-package #:eager-future2) (defmacro pexec (&body body) - "A shorthand for (pcall (lambda () ...))." + "Shorthand for (pcall (lambda () ...))" `(pcall (lambda () ,@body))) (defmacro plet ((&rest bindings) &body body) @@ -78,8 +78,7 @@ elapsed, or the first yieldable future otherwise." (funcall ,function ,@syms)))) (defun touch (x) - "If x is a future, yields its value, otherwise returns x. -Borrowed from MultiLisp." + "If x is a future, yields its value, otherwise returns x." (if (typep x 'future) (yield x) x)) diff --git a/scheduler.lisp b/scheduler.lisp index 8b60208..9cd7fbf 100644 --- a/scheduler.lisp +++ b/scheduler.lisp @@ -29,10 +29,14 @@ (with-recursive-lock-held (*thread-counter-lock*) (incf *total-threads*))) (defun thread-pool-size () + "Returns the current number of threads in the thread pool. This +number determines the maximum amount of speculative futures that can +be computed at the same time." (with-recursive-lock-held (*thread-counter-lock*) *total-threads*)) (defun advise-thread-pool-size (new-size) + "Attempts to set the amount of threads in the thread pool to given value." (with-recursive-lock-held (*thread-counter-lock*) (if (< *total-threads* new-size) (loop repeat (- new-size *total-threads*) do (make-pool-thread)) -- GitLab