Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 82 of 82 for startMem (0.14 sec)

  1. src/cmd/link/internal/ld/lib.go

    		toc := ctxt.loader.LookupOrCreateSym(".TOC.", 0)
    		sb := ctxt.loader.MakeSymbolUpdater(toc)
    		sb.SetType(sym.SDYNIMPORT)
    	}
    
    	// The Android Q linker started to complain about underalignment of the our TLS
    	// section. We don't actually use the section on android, so don't
    	// generate it.
    	if buildcfg.GOOS != "android" {
    		tlsg := ctxt.loader.LookupOrCreateSym("runtime.tlsg", 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  2. src/os/os_test.go

    			t.Errorf("Test process succeeded, but expected to fail")
    		}
    		stdin.Close() // Keep stdin alive until the process has finished dying.
    	}()
    
    	// Wait for the process to be started.
    	// (It will close its stdout when it reaches TestMain.)
    	io.Copy(io.Discard, stdout)
    
    	processKiller(cmd.Process)
    }
    
    func TestKillStartProcess(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
Back to top