I read in this presentation http://golang.org/doc/ExpressivenessOfGo.pdf page 42:
Safe
- no stack overflows
How is this possible? and/or how does Go works to avoid this?
It is not a set since it doesn't store the data not provides operations as a set does. The correct answer is that GO doesn't have this functionality.
Stack Overflow was sold to Prosus, a Netherlands-based consumer internet conglomerate, on 2 June 2021 for $1.8 billion.
Stack Overflow officially launched on September 15, 2008. In five short years, you've answered over 5 million questions on more than 100 sites, and helped hundreds of millions of people find the answers they needed.
The most-common cause of stack overflow is excessively deep or infinite recursion, in which a function calls itself so many times that the space needed to store the variables and information associated with each call is more than can fit on the stack. An example of infinite recursion in C.
It's a feature called "segmented stacks": every goroutine has its own stack, allocated on the heap.
In the simplest case, programming language implementations use a single stack per process/address space, commonly managed with special processor instructions called push
and pop
(or something like that) and implemented as a dynamic array of stack frames starting at a fixed address (commonly, the top of virtual memory).
That is (or used to be) fast, but is not particularly safe. It causes trouble when lots of code is executing concurrently in the same address space (threads). Now each needs its own stack. But then, all the stacks (except perhaps one) must be fixed-size, lest they overlap with each other or with the heap.
Any programming language that uses a stack can, however, also be implemented by managing the stack in a different way: by using a list data structure or similar that holds the stack frames, but is actually allocated on the heap. There's no stack overflow until the heap is filled.
it uses a segmented stack. Which basically means it uses a linked list instead of a fixed size array as it's stack. When it runs out of space it makes the stack a little bigger.
edit:
Here is some more information: http://golang.org/doc/go_faq.html#goroutines
The reason this is so great is not because it'll never overflow (that's a nice side-effect), it's that you can create threads with a really small memory footprint, meaning you can have lots of them.
I don't think they can "totally" avoid stack overflows. They provide a way to prevent the most typical programming-related errors to produce a stack overflow.
When the memory finishes there is no way to prevent a stack overflow.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With