Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for uc_regspace (0.08 sec)

  1. src/runtime/defs_linux_arm.go

    	fault_address uint32
    }
    
    type ucontext struct {
    	uc_flags    uint32
    	uc_link     *ucontext
    	uc_stack    stackt
    	uc_mcontext sigcontext
    	uc_sigmask  uint32
    	__unused    [31]int32
    	uc_regspace [128]uint32
    }
    
    type timeval struct {
    	tv_sec  int32
    	tv_usec int32
    }
    
    func (tv *timeval) set_usec(x int32) {
    	tv.tv_usec = x
    }
    
    type itimerspec struct {
    	it_interval timespec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top