Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for StoreInt32 (0.5 sec)

  1. src/cmd/cgo/internal/test/issue9400_linux.go

    	defer runtime.GOMAXPROCS(runtime.GOMAXPROCS(2))
    
    	// Start signaller
    	atomic.StoreInt32(&issue9400.Baton, 0)
    	go func() {
    		// Wait for RewindAndSetgid
    		for atomic.LoadInt32(&issue9400.Baton) == 0 {
    			runtime.Gosched()
    		}
    		// Broadcast SIGSETXID
    		runtime.LockOSThread()
    		C.setgid(0)
    		// Indicate that signalling is done
    		atomic.StoreInt32(&issue9400.Baton, 0)
    	}()
    
    	// Grow the stack and put down a test pattern
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 18 19:55:29 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssagen/ssa.go

    	alias("sync", "runtime_LoadAcquintptr", "internal/runtime/atomic", "LoadAcq64", p8...) // linknamed
    
    	// Aliases for atomic store operations
    	alias("internal/runtime/atomic", "Storeint32", "internal/runtime/atomic", "Store", all...)
    	alias("internal/runtime/atomic", "Storeint64", "internal/runtime/atomic", "Store64", all...)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"LoadInt32", Func, 0},
    		{"LoadInt64", Func, 0},
    		{"LoadPointer", Func, 0},
    		{"LoadUint32", Func, 0},
    		{"LoadUint64", Func, 0},
    		{"LoadUintptr", Func, 0},
    		{"Pointer", Type, 19},
    		{"StoreInt32", Func, 0},
    		{"StoreInt64", Func, 0},
    		{"StorePointer", Func, 0},
    		{"StoreUint32", Func, 0},
    		{"StoreUint64", Func, 0},
    		{"StoreUintptr", Func, 0},
    		{"SwapInt32", Func, 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top