Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for unminit (0.13 sec)

  1. src/runtime/asm_riscv64.s

    	MOV	0(X2), g
    	CALL	runtime·save_g(SB)
    	MOV	(g_stack+stack_hi)(g), X5
    	MOV	8(X2), X6
    	SUB	X6, X5, X6
    	MOV	X6, X2
    
    	MOVW	X10, ret+16(FP)
    	RET
    
    // func asminit()
    TEXT runtime·asminit(SB),NOSPLIT|NOFRAME,$0-0
    	RET
    
    // reflectcall: call a function with the given argument list
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 13:57:06 UTC 2023
    - 27K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/fmt.go

    	// but we may have an arbitrary number added, eg by typecheck
    	// and inlining. If it doesn't fit the syntax, emit an enclosing
    	// block starting with the init statements.
    
    	// if we can just say "for" n->ninit; ... then do so
    	simpleinit := len(n.Init()) == 1 && len(n.Init()[0].Init()) == 0 && StmtWithInit(n.Op())
    
    	// otherwise, print the inits as separate statements
    	complexinit := len(n.Init()) != 0 && !simpleinit && exportFormat
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/pe.go

    	// thread.
    	//
    	// For other threads, the runtime explicitly asks the kernel
    	// to use the default stack size so that all stacks are
    	// consistent.
    	//
    	// At thread start, in minit, the runtime queries the OS for
    	// the actual stack bounds so that the stack size doesn't need
    	// to be hard-coded into the runtime.
    	oh64.SizeOfStackReserve = 0x00200000
    	if !iscgo {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  4. src/runtime/runtime2.go

    	locks         int32
    	dying         int32
    	profilehz     int32
    	spinning      bool // m is out of work and is actively looking for work
    	blocked       bool // m is blocked on a note
    	newSigstack   bool // minit on C thread called sigaltstack
    	printlock     int8
    	incgo         bool          // m is executing a cgo call
    	isextra       bool          // m is an extra m
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
Back to top