They're mostly stackful, but this distinction really doesn't apply to Java where you can't manipulate the stack like C (or hand written) languages can. The normal call stack is used for any functions called by a go block, and for the go block itself. However when a go block pauses, it copies values from the stack into the heap before completing the pause. This tends to be rather quick since Java uses pointers for almost everything, and things that aren't pointers, are integer sized.
On Sun, Aug 26, 2018 at 12:49 AM Didier <didi...@gmail.com> wrote: > I've read a bit about the difference between stackless and stackfull > coroutines. > > But I still don't really understand the difference. And I'm trying to know > in which camp core.async would fall. > > Anyone knows? > > -- > You received this message because you are subscribed to the Google > Groups "Clojure" group. > To post to this group, send email to clojure@googlegroups.com > Note that posts from new members are moderated - please be patient with > your first post. > To unsubscribe from this group, send email to > clojure+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/clojure?hl=en > --- > You received this message because you are subscribed to the Google Groups > "Clojure" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to clojure+unsubscr...@googlegroups.com. > For more options, visit https://groups.google.com/d/optout. > -- “One of the main causes of the fall of the Roman Empire was that–lacking zero–they had no way to indicate successful termination of their C programs.” (Robert Firth) -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to clojure+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.