aboutsummaryrefslogtreecommitdiffstats
path: root/prog/target.go
diff options
context:
space:
mode:
Diffstat (limited to 'prog/target.go')
-rw-r--r--prog/target.go15
1 files changed, 8 insertions, 7 deletions
diff --git a/prog/target.go b/prog/target.go
index e2d4f245c..3dbad8a67 100644
--- a/prog/target.go
+++ b/prog/target.go
@@ -13,13 +13,14 @@ import (
// Target describes target OS/arch pair.
type Target struct {
- OS string
- Arch string
- Revision string // unique hash representing revision of the descriptions
- PtrSize uint64
- PageSize uint64
- NumPages uint64
- DataOffset uint64
+ OS string
+ Arch string
+ Revision string // unique hash representing revision of the descriptions
+ PtrSize uint64
+ PageSize uint64
+ NumPages uint64
+ DataOffset uint64
+ LittleEndian bool
Syscalls []*Syscall
Resources []*ResourceDesc