Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for mq_close (0.11 sec)

  1. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_FACCESSAT              = 509 // { int faccessat(int fd, char *path, int amode, \
    	SYS_MQ_OPEN                = 510 // { mqd_t mq_open(const char * name, int oflag, \
    	SYS_MQ_CLOSE               = 511 // { int mq_close(mqd_t mqdes); }
    	SYS_MQ_UNLINK              = 512 // { int mq_unlink(const char *name); }
    	SYS_MQ_GETATTR             = 513 // { int mq_getattr(mqd_t mqdes, \
    	SYS_MQ_SETATTR             = 514 // { int mq_setattr(mqd_t mqdes, \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_MQ_OPEN                = 510 // { mqd_t mq_open(const char * name, int oflag, mode_t mode, struct mq_attr *attr); }
    	SYS_MQ_CLOSE               = 511 // { int mq_close(mqd_t mqdes); }
    	SYS_MQ_UNLINK              = 512 // { int mq_unlink(const char *name); }
    	SYS_MQ_GETATTR             = 513 // { int mq_getattr(mqd_t mqdes, struct mq_attr *mqstat); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	IN_UNMOUNT               = 0x00002000
    	IN_Q_OVERFLOW            = 0x00004000
    	IN_IGNORED               = 0x00008000
    	IN_CLOSE                 = (IN_CLOSE_WRITE | IN_CLOSE_NOWRITE)
    	IN_MOVE                  = (IN_MOVED_FROM | IN_MOVED_TO)
    	IN_ALL_EVENTS            = (IN_ACCESS | IN_MODIFY | IN_ATTRIB |
    		IN_CLOSE | IN_OPEN | IN_MOVE |
    		IN_CREATE | IN_DELETE | IN_DELETE_SELF |
    		IN_MOVE_SELF)
    	IN_ONLYDIR                      = 0x01000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  4. src/syscall/fs_wasip1.go

    )
    
    // https://github.com/WebAssembly/WASI/blob/a2b96e81c0586125cc4dc79a5be0b78d9a059925/legacy/preview1/docs.md#-fd_closefd-fd---result-errno
    //
    //go:wasmimport wasi_snapshot_preview1 fd_close
    //go:noescape
    func fd_close(fd int32) Errno
    
    // https://github.com/WebAssembly/WASI/blob/a2b96e81c0586125cc4dc79a5be0b78d9a059925/legacy/preview1/docs.md#-fd_filestat_set_sizefd-fd-size-filesize---result-errno
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24.1K bytes
    - Viewed (0)
  5. src/runtime/chan_test.go

    func BenchmarkSelectProdCons(b *testing.B) {
    	const CallsPerSched = 1000
    	procs := runtime.GOMAXPROCS(-1)
    	N := int32(b.N / CallsPerSched)
    	c := make(chan bool, 2*procs)
    	myc := make(chan int, 128)
    	myclose := make(chan bool)
    	for p := 0; p < procs; p++ {
    		go func() {
    			// Producer: sends to myc.
    			foo := 0
    			// Intended to not fire during benchmarking.
    			mytimer := time.After(time.Hour)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:47:35 UTC 2023
    - 23.4K bytes
    - Viewed (0)
  6. src/go/types/builtins.go

    			return false
    		}) {
    			return
    		}
    
    		x.mode = novalue
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(nil, x.typ))
    		}
    
    	case _Close:
    		// close(c)
    		if !underIs(x.typ, func(u Type) bool {
    			uch, _ := u.(*Chan)
    			if uch == nil {
    				check.errorf(x, InvalidClose, invalidOp+"cannot close non-channel %s", x)
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/builtins.go

    			return false
    		}) {
    			return
    		}
    
    		x.mode = novalue
    		if check.recordTypes() {
    			check.recordBuiltinType(call.Fun, makeSig(nil, x.typ))
    		}
    
    	case _Close:
    		// close(c)
    		if !underIs(x.typ, func(u Type) bool {
    			uch, _ := u.(*Chan)
    			if uch == nil {
    				check.errorf(x, InvalidClose, invalidOp+"cannot close non-channel %s", x)
    				return false
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
Back to top