Files
tinygo/compiler
Jaden Weiss 4321923641 compiler/runtime: move the channel blocked list onto the stack
Previously, chansend and chanrecv allocated a heap object before blocking on a channel.
This object was used to implement a linked list of goroutines blocked on the channel.
The chansend and chanrecv now instead accept a buffer to store this object in as an argument.
The compiler now creates a stack allocation for this object and passes it in.
2020-06-08 19:59:57 +02:00
..
2020-04-21 08:54:39 +02:00
2020-04-21 08:54:39 +02:00
2020-04-13 16:07:35 +02:00
2020-03-25 20:17:46 +01:00
2020-03-25 20:17:46 +01:00