aboutsummaryrefslogtreecommitdiffstats
path: root/miner
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-05-16 18:13:59 +0800
committerobscuren <geffobscura@gmail.com>2015-05-16 18:55:56 +0800
commit741fa8ca9cf5981805af16d5d9fc9adc31400320 (patch)
tree7c1ae484f42b5f8b5965f7634a6e88c6d4c3d66b /miner
parent1564f1a020b9edc78bc672f8f2df64b3d0dc55c3 (diff)
downloadgo-tangerine-741fa8ca9cf5981805af16d5d9fc9adc31400320.tar
go-tangerine-741fa8ca9cf5981805af16d5d9fc9adc31400320.tar.gz
go-tangerine-741fa8ca9cf5981805af16d5d9fc9adc31400320.tar.bz2
go-tangerine-741fa8ca9cf5981805af16d5d9fc9adc31400320.tar.lz
go-tangerine-741fa8ca9cf5981805af16d5d9fc9adc31400320.tar.xz
go-tangerine-741fa8ca9cf5981805af16d5d9fc9adc31400320.tar.zst
go-tangerine-741fa8ca9cf5981805af16d5d9fc9adc31400320.zip
miner: mutex locks on cpu agent. Closes #1007
Diffstat (limited to 'miner')
-rw-r--r--miner/agent.go39
1 files changed, 23 insertions, 16 deletions
diff --git a/miner/agent.go b/miner/agent.go
index 939f63fef..024e8aec0 100644
--- a/miner/agent.go
+++ b/miner/agent.go
@@ -11,8 +11,9 @@ import (
)
type CpuAgent struct {
- chMu sync.Mutex
- c chan *types.Block
+ mu sync.Mutex
+
+ workCh chan *types.Block
quit chan struct{}
quitCurrentOp chan struct{}
returnCh chan<- *types.Block
@@ -30,19 +31,26 @@ func NewCpuAgent(index int, pow pow.PoW) *CpuAgent {
return miner
}
-func (self *CpuAgent) Work() chan<- *types.Block { return self.c }
+func (self *CpuAgent) Work() chan<- *types.Block { return self.workCh }
func (self *CpuAgent) Pow() pow.PoW { return self.pow }
func (self *CpuAgent) SetReturnCh(ch chan<- *types.Block) { self.returnCh = ch }
func (self *CpuAgent) Stop() {
+ self.mu.Lock()
+ defer self.mu.Unlock()
+
close(self.quit)
close(self.quitCurrentOp)
}
func (self *CpuAgent) Start() {
+ self.mu.Lock()
+ defer self.mu.Unlock()
+
self.quit = make(chan struct{})
- self.quitCurrentOp = make(chan struct{}, 1)
- self.c = make(chan *types.Block, 1)
+ // creating current op ch makes sure we're not closing a nil ch
+ self.quitCurrentOp = make(chan struct{})
+ self.workCh = make(chan *types.Block, 1)
go self.update()
}
@@ -51,10 +59,10 @@ func (self *CpuAgent) update() {
out:
for {
select {
- case block := <-self.c:
- self.chMu.Lock()
- self.quitCurrentOp <- struct{}{}
- self.chMu.Unlock()
+ case block := <-self.workCh:
+ self.mu.Lock()
+ close(self.quitCurrentOp)
+ self.mu.Unlock()
go self.mine(block)
case <-self.quit:
@@ -62,14 +70,13 @@ out:
}
}
- //close(self.quitCurrentOp)
done:
- // Empty channel
+ // Empty work channel
for {
select {
- case <-self.c:
+ case <-self.workCh:
default:
- close(self.c)
+ close(self.workCh)
break done
}
@@ -80,9 +87,9 @@ func (self *CpuAgent) mine(block *types.Block) {
glog.V(logger.Debug).Infof("(re)started agent[%d]. mining...\n", self.index)
// Reset the channel
- self.chMu.Lock()
- self.quitCurrentOp = make(chan struct{}, 1)
- self.chMu.Unlock()
+ self.mu.Lock()
+ self.quitCurrentOp = make(chan struct{})
+ self.mu.Unlock()
// Mine
nonce, mixDigest := self.pow.Search(block, self.quitCurrentOp)