Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 11 of 11 for INITIALIZING (0.12 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    	raw    RawSockaddrIUCV
    }
    
    func (sa *SockaddrIUCV) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	sa.raw.Family = AF_IUCV
    	// These are EBCDIC encoded by the kernel, but we still need to pad them
    	// with blanks. Initializing with blanks allows the caller to feed in either
    	// a padded or an unpadded string.
    	for i := 0; i < 8; i++ {
    		sa.raw.Nodeid[i] = ' '
    		sa.raw.User_id[i] = ' '
    		sa.raw.Name[i] = ' '
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
Back to top