Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for SysvShmAttach (0.1 sec)

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

    // license that can be found in the LICENSE file.
    
    //go:build (darwin && !ios) || linux || zos
    
    package unix
    
    import "unsafe"
    
    // SysvShmAttach attaches the Sysv shared memory segment associated with the
    // shared memory identifier id.
    func SysvShmAttach(id int, addr uintptr, flag int) ([]byte, error) {
    	addr, errno := shmat(id, addr, flag)
    	if errno != nil {
    		return nil, errno
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 1.4K bytes
    - Viewed (0)
Back to top