From 7db2edcb3364ef5415e992a18c02c73bba6cdd29 Mon Sep 17 00:00:00 2001 From: Baozeng Ding Date: Mon, 8 Aug 2016 21:32:48 +0800 Subject: sys/sysgen/prog: support ranged int This commit supports inclusive ranged int, like foo int32[-10~10], which will generate random integer between -10 and 10. In future we will support more than one range, like int32[0, -5~10, 50, 100~200] --- sys/decl.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'sys') 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 { -- cgit mrf-deployment