diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2016-08-13 17:47:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-08-13 17:47:14 +0200 |
| commit | 7bb59c0ad055942a690cc034f452a19b405c7771 (patch) | |
| tree | cec8efa9f607da32d04b57f31da78b61e9e52ac4 /sys | |
| parent | 39350d876d19ab0937511d969844fb9a559dfd8d (diff) | |
| parent | 7db2edcb3364ef5415e992a18c02c73bba6cdd29 (diff) | |
Merge pull request #53 from sploving/master
support range int
Diffstat (limited to 'sys')
| -rw-r--r-- | sys/decl.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/decl.go b/sys/decl.go index 8115a1d6c..4c85b9b53 100644 --- a/sys/decl.go +++ b/sys/decl.go @@ -1,4 +1,4 @@ -// Copyright 2015 syzkaller project authors. All rights reserved. +// Copyright 2015/2016 syzkaller project authors. All rights reserved. // Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. package sys @@ -385,12 +385,15 @@ const ( IntSignalno IntInaddr IntInport + IntRange ) type IntType struct { TypeCommon TypeSize uintptr Kind IntKind + RangeBegin int64 + RangeEnd int64 } func (t IntType) Size() uintptr { |
