-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Step2: fixes #13781, fixes #13805 #13897
Merged
Merged
Changes from 12 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
b640ec3
Fix sym owner in wrapper proc
ee824e6
progress
f875171
threadpool changes
3dfcadf
revert lowerings
66b7c31
add newFastMoveStmt
75f7f79
Merge branch 'devel' into arc_flowar_step2
13c073b
progress
6eff44e
fix style
4469fb7
add test
2d7a6a8
bug fix
dcee976
add missing file
aeaaad3
improve test
709adae
try fixing test by switching to cpp
4934105
Merge branch 'devel' into arc_flowar_step2
8e75541
improve style
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
discard """ | ||
cmd: "nim c --gc:arc --threads:on $file" | ||
output: '''ok1 | ||
ok2 | ||
destroyed | ||
destroyed | ||
destroyed | ||
''' | ||
""" | ||
import threadpool, os | ||
|
||
type | ||
MyObj = object | ||
p: int | ||
MyObjRef = ref MyObj | ||
|
||
proc `=destroy`(x: var MyObj) = | ||
if x.p != 0: | ||
echo "destroyed" | ||
|
||
proc thread1(): string = | ||
os.sleep(1000) | ||
return "ok1" | ||
|
||
proc thread2(): ref string = | ||
os.sleep(1000) | ||
new(result) | ||
result[] = "ok2" | ||
|
||
proc thread3(): ref MyObj = | ||
os.sleep(1000) | ||
new(result) | ||
result[].p = 2 | ||
|
||
var fv1 = spawn thread1() | ||
var fv2 = spawn thread2() | ||
var fv3 = spawn thread3() | ||
sync() | ||
echo ^fv1 | ||
echo (^fv2)[] | ||
|
||
|
||
proc thread4(x: MyObjRef): MyObjRef {.nosinks.} = | ||
os.sleep(1000) | ||
result = x | ||
|
||
proc thread5(x: sink MyObjRef): MyObjRef = | ||
os.sleep(1000) | ||
result = x | ||
|
||
proc ref_forwarding_test = | ||
var x = new(MyObj) | ||
x[].p = 2 | ||
var y = spawn thread4(x) | ||
|
||
proc ref_sink_forwarding_test = | ||
var x = new(MyObj) | ||
x[].p = 2 | ||
var y = spawn thread5(x) | ||
|
||
ref_forwarding_test() | ||
ref_sink_forwarding_test() | ||
sync() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suspicious logic. Why not at the end of the
of nkCallkinds
handling code like?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The idea is that spawn can be written in the following way:
I want
c.inSpawn
to be greater than zero only formyproc
call but not forcall2
andcall3
in example above.