github.com/hugelgupf/u-root@v0.0.0-20191023214958-4807c632154c/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
    14  
    15  // Arg is the argument type for system calls
    16  type Arg uintptr