diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2015-12-11 15:42:14 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2015-12-17 14:38:46 +0100 |
| commit | 9980a72713f95bdef6bbd649fd0525bfe1da64d5 (patch) | |
| tree | 2f28c2926f72cf4bb1926a58e20a42c44d6a7f36 /ipc | |
| parent | 48d0a3662ef7971ad56214c73623a30cee996415 (diff) | |
sys: automatically add padding to structs
Diffstat (limited to 'ipc')
| -rw-r--r-- | ipc/ipc.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc.go b/ipc/ipc.go index 95205d764..d01b6bb3a 100644 --- a/ipc/ipc.go +++ b/ipc/ipc.go @@ -45,7 +45,7 @@ const ( ) func MakeEnv(bin string, timeout time.Duration, flags uint64) (*Env, error) { - inf, inmem, err := createMapping(1 << 20) + inf, inmem, err := createMapping(2 << 20) if err != nil { return nil, err } |
