Skip to content

Commit

Permalink
miner: mutex locks on cpu agent. Closes ethereum#1007
Browse files Browse the repository at this point in the history
  • Loading branch information
obscuren committed May 16, 2015
1 parent 1564f1a commit 741fa8c
Showing 1 changed file with 23 additions and 16 deletions.
39 changes: 23 additions & 16 deletions miner/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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()
}
Expand All @@ -51,25 +59,24 @@ 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:
break 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
}
Expand All @@ -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)
Expand Down

0 comments on commit 741fa8c

Please sign in to comment.