Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ErrRange (0.11 sec)

  1. src/runtime/proc.go

    		})
    	}
    
    	// Lock the main goroutine onto this, the main OS thread,
    	// during initialization. Most programs won't care, but a few
    	// do require certain calls to be made by the main thread.
    	// Those can arrange for main.main to run in the main thread
    	// by calling runtime.LockOSThread during initialization
    	// to preserve the lock.
    	lockOSThread()
    
    	if mp != &m0 {
    		throw("runtime.main not on m0")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/data.go

    	state.allocateSingleSymSections(segro, sym.SELFROSECT, sym.SRODATA, 04)
    
    	// There is some data that are conceptually read-only but are written to by
    	// relocations. On GNU systems, we can arrange for the dynamic linker to
    	// mprotect sections after relocations are applied by giving them write
    	// permissions in the object file and calling them ".data.rel.ro.FOO". We
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    // operand combinations for a given instruction.  This is initialized from buildop.
    //
    // Likewise, each slice of optab is dynamically sorted using the ocmp Sort interface
    // to arrange entries to minimize text size of each opcode.
    //
    // optab is the sorted result of combining optabBase, optabGen, and prefixableOptab.
    var optab []Optab
    
    var optabBase = []Optab{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
Back to top