Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 182 for msgsys (0.16 sec)

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

    	SYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }
    	SYS_MSGSND                   = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }
    	SYS_MSGRCV                   = 227 // { ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }
    	SYS_SHMAT                    = 228 // { int shmat(int shmid, const void *shmaddr, int shmflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go

    	SYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }
    	SYS_MSGSND                   = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }
    	SYS_MSGRCV                   = 227 // { ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }
    	SYS_SHMAT                    = 228 // { int shmat(int shmid, const void *shmaddr, int shmflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go

    	SYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }
    	SYS_MSGSND                   = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }
    	SYS_MSGRCV                   = 227 // { ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }
    	SYS_SHMAT                    = 228 // { int shmat(int shmid, const void *shmaddr, int shmflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go

    	SYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }
    	SYS_MSGSND                   = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }
    	SYS_MSGRCV                   = 227 // { ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }
    	SYS_SHMAT                    = 228 // { int shmat(int shmid, const void *shmaddr, int shmflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go

    	SYS_MSGGET                   = 225 // { int msgget(key_t key, int msgflg); }
    	SYS_MSGSND                   = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }
    	SYS_MSGRCV                   = 227 // { ssize_t msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }
    	SYS_SHMAT                    = 228 // { int shmat(int shmid, const void *shmaddr, int shmflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 36.1K bytes
    - Viewed (0)
  6. src/syscall/route_bsd.go

    	if nmsgs != len(msgs)+nskips {
    		return nil, EINVAL
    	}
    	return msgs, nil
    }
    
    // ParseRoutingSockaddr parses msg's payload as raw sockaddrs and
    // returns the slice containing the [Sockaddr] interfaces.
    //
    // Deprecated: Use golang.org/x/net/route instead.
    func ParseRoutingSockaddr(msg RoutingMessage) ([]Sockaddr, error) {
    	sas, err := msg.sockaddr()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go

    	SYS_MSGGET               = 225 // { int|sys||msgget(key_t key, int msgflg); }
    	SYS_MSGSND               = 226 // { int|sys||msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }
    	SYS_MSGRCV               = 227 // { ssize_t|sys||msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }
    	SYS_SHMAT                = 228 // { void *|sys||shmat(int shmid, const void *shmaddr, int shmflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 25.7K bytes
    - Viewed (0)
  8. src/runtime/defs_dragonfly.go

    	SIGQUIT   = C.SIGQUIT
    	SIGILL    = C.SIGILL
    	SIGTRAP   = C.SIGTRAP
    	SIGABRT   = C.SIGABRT
    	SIGEMT    = C.SIGEMT
    	SIGFPE    = C.SIGFPE
    	SIGKILL   = C.SIGKILL
    	SIGBUS    = C.SIGBUS
    	SIGSEGV   = C.SIGSEGV
    	SIGSYS    = C.SIGSYS
    	SIGPIPE   = C.SIGPIPE
    	SIGALRM   = C.SIGALRM
    	SIGTERM   = C.SIGTERM
    	SIGURG    = C.SIGURG
    	SIGSTOP   = C.SIGSTOP
    	SIGTSTP   = C.SIGTSTP
    	SIGCONT   = C.SIGCONT
    	SIGCHLD   = C.SIGCHLD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/runtime/defs_openbsd.go

    	SIGQUIT   = C.SIGQUIT
    	SIGILL    = C.SIGILL
    	SIGTRAP   = C.SIGTRAP
    	SIGABRT   = C.SIGABRT
    	SIGEMT    = C.SIGEMT
    	SIGFPE    = C.SIGFPE
    	SIGKILL   = C.SIGKILL
    	SIGBUS    = C.SIGBUS
    	SIGSEGV   = C.SIGSEGV
    	SIGSYS    = C.SIGSYS
    	SIGPIPE   = C.SIGPIPE
    	SIGALRM   = C.SIGALRM
    	SIGTERM   = C.SIGTERM
    	SIGURG    = C.SIGURG
    	SIGSTOP   = C.SIGSTOP
    	SIGTSTP   = C.SIGTSTP
    	SIGCONT   = C.SIGCONT
    	SIGCHLD   = C.SIGCHLD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 17:31:23 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_MSGGET                 = 225 // { int msgget(key_t key, int msgflg); }
    	SYS_MSGSND                 = 226 // { int msgsnd(int msqid, const void *msgp, size_t msgsz, int msgflg); }
    	SYS_MSGRCV                 = 227 // { int msgrcv(int msqid, void *msgp, size_t msgsz, long msgtyp, int msgflg); }
    	SYS_SHMAT                  = 228 // { caddr_t shmat(int shmid, const void *shmaddr, int shmflg); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
Back to top