Skip to content
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

New channels implementation for ORC #17305

Merged
merged 58 commits into from
Mar 12, 2021
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
3273fd7
improve test coverage for isolation
ringabout Mar 8, 2021
b4fa432
a bit better
ringabout Mar 8, 2021
421cf08
Merge remote-tracking branch 'upstream/devel' into a141
ringabout Mar 9, 2021
4124ddf
prepare Nim channel implementation for ORC
ringabout Mar 9, 2021
2bd38ae
add testcase
ringabout Mar 9, 2021
13c03bb
more
ringabout Mar 9, 2021
34ac3d5
chan
ringabout Mar 9, 2021
26262ef
more
ringabout Mar 9, 2021
ffefb11
arc matrix
ringabout Mar 9, 2021
7076286
use more result
ringabout Mar 9, 2021
75161fb
use orc
ringabout Mar 9, 2021
db8b10d
fix
ringabout Mar 9, 2021
1d18333
correct
ringabout Mar 9, 2021
359af2f
remove
ringabout Mar 9, 2021
c67e41b
address comments
ringabout Mar 9, 2021
2d43156
slight
ringabout Mar 9, 2021
23715bd
done
ringabout Mar 9, 2021
983006d
fix
ringabout Mar 9, 2021
fd81c9c
use camelCase
ringabout Mar 9, 2021
782b28a
address comments
ringabout Mar 9, 2021
b9f50c4
add notes
ringabout Mar 9, 2021
a695079
fix
ringabout Mar 9, 2021
e8d7c04
address comments
ringabout Mar 9, 2021
95a600b
better tests
ringabout Mar 9, 2021
ce548b5
Update lib/std/channels.nim
ringabout Mar 9, 2021
bc888da
fix some comments
ringabout Mar 9, 2021
a8f8fec
Merge remote-tracking branch 'upstream/devel' into a141
ringabout Mar 9, 2021
70fe3f2
add comments
ringabout Mar 9, 2021
20bb9e0
improve
ringabout Mar 9, 2021
2922794
rename
ringabout Mar 9, 2021
de993c7
fix
ringabout Mar 9, 2021
da7dec9
fix channels
ringabout Mar 9, 2021
9245652
fix
ringabout Mar 9, 2021
ebec7f0
uncomment
ringabout Mar 9, 2021
8cc6e12
fix
ringabout Mar 10, 2021
0da9bef
Rename tchannel_pthread.nim to tchannels_pthread.nim
ringabout Mar 11, 2021
36d83e9
Rename tchannel_simple.nim to tchannels_simple.nim
ringabout Mar 11, 2021
970268e
clean
ringabout Mar 11, 2021
63b880c
Merge branch 'a141' of https://github.com/xflywind/Nim into a141
ringabout Mar 11, 2021
43900b3
clean
ringabout Mar 11, 2021
3c9d50f
more clean
ringabout Mar 11, 2021
46f9a4a
Merge remote-tracking branch 'upstream/devel' into a141
ringabout Mar 11, 2021
04029ca
impl rc
ringabout Mar 11, 2021
f9d9d52
fix
ringabout Mar 11, 2021
baff93a
add comments
ringabout Mar 11, 2021
0e7b739
fix
ringabout Mar 11, 2021
8f564ad
clean
ringabout Mar 11, 2021
924de55
remove mod initially
ringabout Mar 11, 2021
394f2c2
better
ringabout Mar 11, 2021
af6a761
one line
ringabout Mar 11, 2021
003c617
style
ringabout Mar 11, 2021
b5bcdf5
fix
ringabout Mar 11, 2021
38f95d6
fix
ringabout Mar 11, 2021
db3de7c
fix
ringabout Mar 11, 2021
ea7d0af
fix
ringabout Mar 11, 2021
7a03ce8
Merge branch 'devel' into a141
ringabout Mar 11, 2021
60f5d64
fix length
ringabout Mar 12, 2021
7922bfc
fix
ringabout Mar 12, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ provided by the operating system.

- Added `jscore.debugger` to [call any available debugging functionality, such as breakpoints.](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/debugger)

- Added `std/channel`.

## Language changes

Expand Down
Loading