Re: [go-nuts] calling back and forth of C++ and go functions

2019-08-27 Thread sudarshan12s
Thanks Ian for the inputs. I was trying to migrate our CPP application to GO in a phased manner. I thought of first plugging out the threadpool and replace it with GO's implementation. I understand the approach is not correct , instead plugging out partial functionality from CPP application an

Re: [go-nuts] calling back and forth of C++ and go functions

2019-08-26 Thread Ian Lance Taylor
On Mon, Aug 26, 2019 at 10:48 AM wrote: > > I am planning to replace C++ threadpool class with goroutines. I see several > go implementations for threadpool. Without getting into how to do this, why do you want to do this? Goroutines work very well for Go code, but when Go code calls into C++ co