github.com/u-root/u-root@v7.0.1-0.20200915234505-ad7babab0a8e+incompatible/pkg/strace/types.go (about) 1 // Copyright 2015-2018 the u-root Authors. All rights reserved 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 5 package strace 6 7 type iovec struct { 8 P Addr /* Starting address */ 9 S uint32 /* Number of bytes to transfer */ 10 } 11 12 // Addr is an address for use in strace I/O 13 type Addr uintptr