mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
align memory to avoid nil with atomic operations
This commit is contained in:
parent
177f3add81
commit
46a675ecc2
|
@ -14,9 +14,9 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type LevelDbNeedleMap struct {
|
type LevelDbNeedleMap struct {
|
||||||
|
baseNeedleMapper
|
||||||
dbFileName string
|
dbFileName string
|
||||||
db *leveldb.DB
|
db *leveldb.DB
|
||||||
baseNeedleMapper
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewLevelDbNeedleMap(dbFileName string, indexFile *os.File, opts *opt.Options) (m *LevelDbNeedleMap, err error) {
|
func NewLevelDbNeedleMap(dbFileName string, indexFile *os.File, opts *opt.Options) (m *LevelDbNeedleMap, err error) {
|
||||||
|
|
Loading…
Reference in a new issue