Golang : Stop goroutine without channel
Writing this down here as my own reference. In case you need to stop a goroutine from further execution and you cannot or do not want to use channel. You can use boolean variable as well.
In my previous tutorial on how to merge video and audio into a mp4 file, I need to stop goroutines that invoke the video camera and if the goroutine is not properly closed, it will cause segmentation fault.
Therefore, to stop the goroutine and prevent segmentation fault. Use :
var (
stopAudio = false
stopVideo = false
....
and when it is time to terminate the application, simply set the variable to true
fmt.Println("Cleaning up ...")
if key == 27 {
// stop audio first
stopAudio = true
and the in goroutine.
for {
if !stopAudio { // to prevent segmentation fault <---------------- HERE!
audioStream.Read()
fmt.Printf("\rRecording video and audio now. Wave or say something to your microphone! [%v]", ticker[rand.Intn(len(ticker)-1)])
// write to wave file
_, err := waveWriter.Write([]byte(framesPerBuffer)) // WriteSample16 for 16 bits
errCheck(err)
} else {
break
}
}
errCheck(audioStream.Stop())
audioStream.Close()
portaudio.Terminate()
...
Hope this helps!
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+11.1k Golang : Find age or leap age from date of birth example
+8.7k Golang : Get SPF and DMARC from email headers to fight spam
+35.8k Golang : How to split or chunking a file to smaller pieces?
+5.1k Golang : Return multiple values from function
+15.8k Golang : Loop each day of the current month example
+21.7k Fix "Failed to start php5-fpm.service: Unit php5-fpm.service is masked."
+21.4k Golang : Setting up/configure AWS credentials with official aws-sdk-go
+22.2k Generate checksum for a file in Go
+10.8k Golang : Calculate Relative Strength Index(RSI) example
+7.2k Golang : Convert source code to assembly language
+15.4k Golang : Get current time from the Internet time server(ntp) example
+8.4k Golang : Progress bar with ∎ character