提交 | 用户 | 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 | ) |