diff options
author | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-15 22:09:35 -0700 |
---|---|---|
committer | Ben Johnson <benbjohnson@yahoo.com> | 2014-02-15 22:09:35 -0700 |
commit | 3f0daf11ca5f232baa9a891b4301822d2b0cbeeb (patch) | |
tree | 057b2bf9d7487343f477f62726919421dc66b6b6 /buckets.go | |
parent | Merge pull request #32 from benbjohnson/blocks (diff) | |
parent | Add parallel usage test and race detector. (diff) | |
download | dedo-3f0daf11ca5f232baa9a891b4301822d2b0cbeeb.tar.gz dedo-3f0daf11ca5f232baa9a891b4301822d2b0cbeeb.tar.xz |
Merge pull request #34 from benbjohnson/multithreading
Race Detection
Diffstat (limited to 'buckets.go')
-rw-r--r-- | buckets.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -64,7 +64,7 @@ func (b *buckets) read(p *page) { // Associate keys and items. for index, key := range keys { b.items[key] = &bucket{ - root: items[index].root, + root: items[index].root, sequence: items[index].sequence, } } |