Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
eager-future2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Vladimir Sedach
eager-future2
Commits
afaa2364
Commit
afaa2364
authored
14 years ago
by
Vladimir Sedach
Browse files
Options
Downloads
Patches
Plain Diff
Moved pexec, plet to library.lisp
parent
9bbe86c1
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
eager-future2.asd
+2
-1
2 additions, 1 deletion
eager-future2.asd
library.lisp
+26
-0
26 additions, 0 deletions
library.lisp
make-future.lisp
+0
-18
0 additions, 18 deletions
make-future.lisp
with
28 additions
and
19 deletions
eager-future2.asd
+
2
−
1
View file @
afaa2364
...
...
@@ -6,5 +6,6 @@
:components
((
:file
"package"
)
(
:file
"scheduler"
)
(
:file
"make-future"
)
(
:file
"future"
))
(
:file
"future"
)
(
:file
"library"
))
:depends-on
(
:bordeaux-threads
:trivial-garbage
))
This diff is collapsed.
Click to expand it.
library.lisp
0 → 100644
+
26
−
0
View file @
afaa2364
(
in-package
#:eager-future2
)
(
defmacro
pexec
(
&body
body
)
"A shorthand for (pcall (lambda () ...))."
`
(
pcall
(
lambda
()
,@
body
)))
(
defmacro
plet
((
&rest
bindings
)
&body
body
)
"Like LET, but all bindings are evaluated asynchronously."
(
let
((
bindings
(
mapcar
(
lambda
(
x
)
(
if
(
consp
x
)
x
(
list
x
nil
)))
bindings
)))
(
let
((
syms
(
mapcar
(
lambda
(
x
)
(
gensym
(
string
(
car
x
))))
bindings
)))
`
(
let
,
(
loop
for
(
nil
exp
)
in
bindings
for
sym
in
syms
collect
`
(
,
sym
(
pexec
,
exp
)))
(
symbol-macrolet
,
(
loop
for
(
var
nil
)
in
bindings
for
sym
in
syms
collect
`
(
,
var
(
yield
,
sym
)))
,@
body
)))))
;;(defun pand)
;;(defun por)
(
defun
select-timeout
(
timeout
&rest
futures
)
(
apply
#'
select
(
pcall
(
lambda
()
(
sleep
timeout
))
:eager
)
futures
))
\ No newline at end of file
This diff is collapsed.
Click to expand it.
make-future.lisp
+
0
−
18
View file @
afaa2364
...
...
@@ -69,21 +69,3 @@ The function is called in an unspecified dynamic environment."
(
unless
(
eq
future-type
:lazy
)
(
schedule-future
future
future-type
))
future
))
(
defmacro
pexec
(
&body
body
)
"A shorthand for (pcall (lambda () ...))."
`
(
pcall
(
lambda
()
,@
body
)))
(
defmacro
plet
((
&rest
bindings
)
&body
body
)
"Like LET, but all bindings are evaluated asynchronously."
(
let
((
bindings
(
mapcar
(
lambda
(
x
)
(
if
(
consp
x
)
x
(
list
x
nil
)))
bindings
)))
(
let
((
syms
(
mapcar
(
lambda
(
x
)
(
gensym
(
string
(
car
x
))))
bindings
)))
`
(
let
,
(
loop
for
(
nil
exp
)
in
bindings
for
sym
in
syms
collect
`
(
,
sym
(
pexec
,
exp
)))
(
symbol-macrolet
,
(
loop
for
(
var
nil
)
in
bindings
for
sym
in
syms
collect
`
(
,
var
(
yield
,
sym
)))
,@
body
)))))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment