Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How come Go doesn't have stackoverflows

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?

like image 449
OscarRyz Avatar asked Nov 19 '10 16:11

OscarRyz


People also ask

Why Golang does not have set?

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.

What happened with stack overflow?

Stack Overflow was sold to Prosus, a Netherlands-based consumer internet conglomerate, on 2 June 2021 for $1.8 billion.

How old is Stackoverflow?

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.

What is one way you can run out of stack memory?

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.


3 Answers

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.

like image 195
Fred Foo Avatar answered Sep 23 '22 05:09

Fred Foo


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.

like image 39
dan_waterworth Avatar answered Sep 23 '22 05:09

dan_waterworth


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.

like image 24
fabrizioM Avatar answered Sep 23 '22 05:09

fabrizioM