Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 213 for msgsync (0.12 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/tables.go

    	MADDLD:         "maddld",
    	MCRXRX:         "mcrxrx",
    	MFVSRLD:        "mfvsrld",
    	MODSD:          "modsd",
    	MODSW:          "modsw",
    	MODUD:          "modud",
    	MODUW:          "moduw",
    	MSGSYNC:        "msgsync",
    	MTVSRDD:        "mtvsrdd",
    	MTVSRWS:        "mtvsrws",
    	PASTECC:        "paste.",
    	SETB:           "setb",
    	SLBIEG:         "slbieg",
    	SLBSYNC:        "slbsync",
    	STDAT:          "stdat",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 334.7K bytes
    - Viewed (0)
  2. test/fixedbugs/issue19467.dir/mysync.go

    // Copyright 2017 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package mysync
    
    import "runtime"
    
    type WaitGroup struct {
    	Callers []uintptr
    }
    
    func (wg *WaitGroup) Add(x int) {
    	wg.Callers = make([]uintptr, 32)
    	n := runtime.Callers(1, wg.Callers)
    	wg.Callers = wg.Callers[:n]
    }
    
    func (wg *WaitGroup) Done() {
    	wg.Add(-1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 17:27:49 UTC 2017
    - 421 bytes
    - Viewed (0)
  3. api/go1.3.txt

    pkg syscall (netbsd-386), const MCL_FUTURE ideal-int
    pkg syscall (netbsd-386), const MS_ASYNC = 1
    pkg syscall (netbsd-386), const MS_ASYNC ideal-int
    pkg syscall (netbsd-386), const MS_INVALIDATE = 2
    pkg syscall (netbsd-386), const MS_INVALIDATE ideal-int
    pkg syscall (netbsd-386), const MS_SYNC = 4
    pkg syscall (netbsd-386), const MS_SYNC ideal-int
    pkg syscall (netbsd-386), const PROT_EXEC = 4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 02 02:45:00 UTC 2014
    - 117K bytes
    - Viewed (0)
  4. test/fixedbugs/issue19467.dir/z.go

    package main
    
    import (
    	"log"
    	"runtime"
    
    	"./mysync"
    )
    
    func main() {
    	var wg mysync.WaitGroup
    	wg.Done()
    	ci := runtime.CallersFrames(wg.Callers)
    	frames := make([]runtime.Frame, 0, 4)
    	for {
    		frame, more := ci.Next()
    		frames = append(frames, frame)
    		if !more {
    			break
    		}
    	}
    	expecting := []string{
    		"test/mysync.(*WaitGroup).Add",
    		"test/mysync.(*WaitGroup).Done",
    	}
    	for i := 0; i < 2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 17:50:47 UTC 2022
    - 696 bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/msync_darwin_libc.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build darwin
    
    package ld
    
    import _ "unsafe" // for go:linkname
    
    //go:linkname msync syscall.msync
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 21:52:09 UTC 2023
    - 307 bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/CommonServerMessageBlockResponse.java

    /**
     * @author mbechler
     *
     */
    public interface CommonServerMessageBlockResponse extends CommonServerMessageBlock, Response {
    
        /**
         * 
         * @return is an async response
         */
        boolean isAsync ();
    
    
        /**
         * 
         * @return the next response
         */
        @Override
        CommonServerMessageBlockResponse getNextResponse ();
    
    
        /**
         * @param next
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  7. src/main/java/jcifs/internal/smb2/ServerMessageBlock2Response.java

        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.util.transport.Response#received()
         */
        @Override
        public final void received () {
            if ( isAsync() && getStatus() == NtStatus.NT_STATUS_PENDING ) {
                synchronized ( this ) {
                    notifyAll();
                }
                return;
            }
            this.received = true;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 05 09:45:59 UTC 2018
    - 7.4K bytes
    - Viewed (0)
  8. src/syscall/zerrors_dragonfly_amd64.go

    	MSG_OOB                           = 0x1
    	MSG_PEEK                          = 0x2
    	MSG_SYNC                          = 0x800
    	MSG_TRUNC                         = 0x10
    	MSG_WAITALL                       = 0x40
    	MS_ASYNC                          = 0x1
    	MS_INVALIDATE                     = 0x2
    	MS_SYNC                           = 0x0
    	NAME_MAX                          = 0xff
    	NET_RT_DUMP                       = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 59.6K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_386.go

    	MSG_PROXY                        = 0x10
    	MSG_RST                          = 0x1000
    	MSG_SYN                          = 0x400
    	MSG_TRUNC                        = 0x20
    	MSG_TRYHARD                      = 0x4
    	MSG_WAITALL                      = 0x100
    	MSG_WAITFORONE                   = 0x10000
    	MS_ACTIVE                        = 0x40000000
    	MS_ASYNC                         = 0x1
    	MS_BIND                          = 0x1000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	__MAP_MEGA                      = 0x8
    	__MAP_64                        = 0x10
    	MAP_ANON                        = 0x20
    	MAP_ANONYMOUS                   = 0x20
    	MS_SYNC                         = 0x1 // msync - synchronous writes
    	MS_ASYNC                        = 0x2 // asynchronous writes
    	MS_INVALIDATE                   = 0x4 // invalidate mappings
    	MS_BIND                         = 0x00001000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
Back to top