Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl-copy
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
Package registry
Model registry
Operate
Environments
Terraform modules
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
Richard M Kreuter
cmucl-copy
Commits
0232d224
Commit
0232d224
authored
12 years ago
by
Raymond Toy
Browse files
Options
Downloads
Patches
Plain Diff
Fix ticket:77 by adding the code given in the ticket.
parent
50b13399
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/code/multi-proc.lisp
+17
-0
17 additions, 0 deletions
src/code/multi-proc.lisp
src/general-info/release-20e.txt
+2
-0
2 additions, 0 deletions
src/general-info/release-20e.txt
with
19 additions
and
0 deletions
src/code/multi-proc.lisp
+
17
−
0
View file @
0232d224
...
@@ -1972,3 +1972,20 @@
...
@@ -1972,3 +1972,20 @@
,
lock
2
*current-process*
nil
)
,
lock
2
*current-process*
nil
)
#-
x86
(
when
(
eq
(
lock-process
,
lock
)
*current-process*
)
#-
x86
(
when
(
eq
(
lock-process
,
lock
)
*current-process*
)
(
setf
(
lock-process
,
lock
)
nil
)))))))
(
setf
(
lock-process
,
lock
)
nil
)))))))
(
defun
%make-thread
(
function
name
)
(
mp:make-process
(
lambda
()
(
let
((
return-values
(
multiple-value-list
(
funcall
function
))))
(
setf
(
getf
(
mp:process-property-list
mp:*current-process*
)
'return-values
)
return-values
)
(
values-list
return-values
)))
:name
name
))
(
defun
join-thread
(
thread
)
(
mp:process-wait
(
format
nil
"Waiting for thread ~A to complete"
thread
)
(
lambda
()
(
not
(
mp:process-alive-p
thread
))))
(
let
((
return-values
(
getf
(
mp:process-property-list
thread
)
'return-values
)))
(
values-list
return-values
)))
This diff is collapsed.
Click to expand it.
src/general-info/release-20e.txt
+
2
−
0
View file @
0232d224
...
@@ -42,6 +42,7 @@ New in this release:
...
@@ -42,6 +42,7 @@ New in this release:
* :I486 and :PENTIUM (Always assume we're running on at least a
* :I486 and :PENTIUM (Always assume we're running on at least a
Pentium.)
Pentium.)
* Update unicode to support Unicode 6.2.
* Update unicode to support Unicode 6.2.
* Add MP:JOIN-THREAD, as given in ticket #77.
* ANSI compliance fixes:
* ANSI compliance fixes:
* Attempts to modify the standard readtable or the standard pprint
* Attempts to modify the standard readtable or the standard pprint
...
@@ -70,6 +71,7 @@ New in this release:
...
@@ -70,6 +71,7 @@ New in this release:
* Ticket #74 fixed.
* Ticket #74 fixed.
* Ticket #76 fixed.
* Ticket #76 fixed.
* Ticket #79 fixed.
* Ticket #79 fixed.
* Ticket #77 fixed.
* Other changes:
* Other changes:
* -8 option for build-all.sh is deprecated since we don't
* -8 option for build-all.sh is deprecated since we don't
...
...
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