zhangmeng
2019-08-26 7db9aba5ca931982d0f688a796c7ba4a70d0c8de
提交 | 用户 | age
3bd1f2 1 // Copyright 2016 Tom Thorogood. All rights reserved.
Z 2 // Use of this source code is governed by a
3 // Modified BSD License license that can be found in
4 // the LICENSE file.
5
6 package shm
7
8 import "errors"
9
10 var (
11     ErrInvalidSharedMemory = errors.New("invalid shared memory")
12     ErrNotMultipleOf64     = errors.New("blockSize is not a multiple of 64")
13     ErrInvalidBuffer       = errors.New("invalid buffer")
14 )