Tagged Questions
The goroutine tag has no wiki summary.
12
votes
3answers
517 views
Doesn't the fact that Go and Java use User space thread mean that you can't really take advantage of multiple core?
We've been talking about threads in my operating system class a lot lately and one question has come to my mind.
Since Go, (and Java) uses User-space thread instead of kernel threads, doesn't that ...
9
votes
1answer
468 views
How can I emulate Go's channels with Haskell?
I recently started reading about the Go programming language and I found the channel variables a very appealing concept. Is it possible to emulate the same concept in Haskell? Maybe to have a data ...
6
votes
2answers
776 views
Differences between Coroutines and GoTo?
I always read about the horrible thing that "goto" is. But, todaym reading about the google programming language "Go" http://golang.org/ and i see that it suports Coroutines (Goroutines).
The ...
5
votes
2answers
325 views
Go: Forcing goroutines into the same thread
Is there a way to ensure that a goroutine will run only in a specific OS thread? For example, when GUI operations must run in the GUI thread, but there might be multiple goroutines running GUI code.
...
5
votes
4answers
504 views
minimum work size of a goroutine
Does anyone know approximately what the minimum work size is needed in order for a goroutine to be beneficial (assuming that there are free cores for the work to be offloaded to)?
4
votes
1answer
260 views
Is the go map structure thread-safe?
Is the Go map type thread safe? I have a program that has many goroutines reading and writing to a map type. If I need to implement a protection mechanism, what's the best way to do it?
4
votes
3answers
579 views
How do I find out if a goroutine is done, without blocking?
All the examples I've seen so far involve blocking to get the result (via the <-chan operator).
My current approach involves passing a pointer to a struct:
type goresult struct {
result ...
4
votes
2answers
554 views
Can you detect how many threads a given number of goroutines will create?
I understand that Goroutines are multiplexed onto multiple OS threads so if one should block, such as while waiting for I/O, others continue to run, but is there any way to know ahead of time how many ...
3
votes
2answers
197 views
Is it possible to receive a result from one of a number of goroutines in Go?
I've only just recently learned about Google's programming language, Go. I've been intrigued by its offered support for concurrency, and set out to learn more about it. However, I went looking to ...
2
votes
3answers
195 views
Max number of goroutines
How many goroutines can I use painless? For example wikipedia says, in Erlang 20 million processes can be created without degrading performance.
Update: I've just investigated in goroutines ...
2
votes
2answers
250 views
How can we use channels in Google Go in place of mutex?
Channels combine communication—the exchange of a value—with synchronization—guaranteeing that two calculations (goroutines) are in a known state.
How is it possible to use the channels in Google Go ...
2
votes
1answer
125 views
More idiomatic way of adding channel result to queue on completion
So, right now, I just pass a pointer to a Queue object (implementation doesn't really matter) and call queue.add(result) at the end of goroutines that should add things to the queue.
I need that same ...
2
votes
2answers
6k views
How to asynchronously call a method in Java
I've been looking at Go's goroutines lately and thought it would be nice to have something similar in Java. As far as I've searched the common way to parallelize a method call is to do something like:
...
1
vote
1answer
73 views
Printing Issue with Concurrent Routines in Google's Go
I have three concurrent routines like this,
func Routine1() {
Print (value a, value b, value c)
Print (value a, value b, value c)
Print (value a, value b, value c)
}
func Routine2() {
Print (value ...
1
vote
3answers
152 views
Mutual Exclusion of Concurrent Go Routine's
In my code there are three concurrent routines. I try to give a brief overview of my code,
Routine 1 {
do something
*Send int to Routine 2
Send int to Routine 3
Print Something
Print Something*
do ...
1
vote
6answers
126 views
Go Programming Language Mutual Concurrent Execution
I have two concurrent go routines like below,
Routine 1{
routine procedure
critical section{ ...
1
vote
2answers
99 views
All goroutines are asleep - deadlock! ----— Error
I want to write three concurrent go routines that sends integers to each other. Now, my code is compiled properly, however after first execution it gives error "all goroutines are asleep - deadlock!". ...
1
vote
2answers
257 views
Go - Concurrent method
How to get a concurrent method?
type test struct {
foo uint8
bar uint8
}
func NewTest(arg1 string) (*test, os.Error) {...}
func (self *test) Get(str string) ([]byte, os.Error) {...}
I ...
0
votes
2answers
52 views
Synchronized channels?
Suppose I'm parsing some kind of input with the following three methods:
func parseHeader ([]byte) []byte
func parseBody ([]byte) []byte
func parseFooter ([]byte) []byte
They all parse a certain ...
0
votes
2answers
111 views
Issue with Mutual Execution of Concurrent Go Routines
In my code there are three concurrent routines. I try to give a brief overview of my code,
Routine 1 {
do something
*Send int to Routine 2
Send int to Routine 3
Print Something
Print Something*
do ...
0
votes
1answer
79 views
Deadlock Error in Mutually Concurrent Go Routines
I have three concurrent go routines like below,
func Routine1() {
mutex1.Lock()
do something
mutex2.Lock()
mutex3.Lock()
send int to routine 2
send int to routine 3
* ...
0
votes
2answers
90 views
Concurrent Execution Issue in Google's Go Language
I have modified my this question in Mutual Exclusion of Concurrent Go Routine's – Arpssss
In my code there are three concurrent routines. I try to give a brief overview of my code,
Routine 1 {
...
0
votes
2answers
101 views
What's wrong with the following go code that I receive 'all goroutines are asleep - deadlock!'
I'm trying to implement an Observer Pattern suggested here; Observer pattern in Go language
(the code listed above doesn't compile and is incomplete). Here, is a complete code that compiles but I get ...
-1
votes
2answers
138 views
throw all goroutines are asleep - deadlock! ----— Error in Google's GO
I want to write three concurrent go routines that sends integers to each other. Now, my code is compiled properly, however after first execution it gives error "throw: all goroutines are asleep - ...