Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 3,475 for tstart (0.29 sec)

  1. src/runtime/sys_aix_ppc64.s

    	ADD $144+FIXED_FRAME, R1
    	MOVD	16(R1), R0
    	MOVD	R0, LR
    	BR (LR)
    
    // runtime.tstart is a function descriptor to the real tstart.
    DATA	runtime·tstart+0(SB)/8, $tstart<>(SB)
    DATA	runtime·tstart+8(SB)/8, $TOC(SB)
    DATA	runtime·tstart+16(SB)/8, $0
    GLOBL	runtime·tstart(SB), NOPTR, $24
    
    TEXT tstart<>(SB),NOSPLIT,$0
    	XOR	 R0, R0 // reset R0
    
    	// set g
    	MOVD	m_g0(R3), g
    	BL	runtime·save_g(SB)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  2. src/runtime/sys_windows_386.s

    	POPL	BX
    	POPL	BP
    	POPL	SI
    	POPL	DI
    
    	// remove callback parameters before return (as per Windows spec)
    	POPL	DX
    	ADDL	CX, SP
    	PUSHL	DX
    
    	CLD
    
    	RET
    
    // void tstart(M *newm);
    TEXT tstart<>(SB),NOSPLIT,$8-4
    	MOVL	newm+0(FP), CX		// m
    	MOVL	m_g0(CX), DX		// g
    
    	// Layout new m scheduler stack on os stack.
    	MOVL	SP, AX
    	MOVL	AX, (g_stack+stack_hi)(DX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 21 15:56:43 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. src/runtime/os_aix.go

    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    func mdestroy(mp *m) {
    }
    
    // tstart is a function descriptor to _tstart defined in assembly.
    var tstart funcDescriptor
    
    func newosproc(mp *m) {
    	var (
    		attr pthread_attr
    		oset sigset
    		tid  pthread
    	)
    
    	if pthread_attr_init(&attr) != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  4. pkg/istio-agent/xds_proxy_delta.go

    	}
    }
    
    func sendDownstreamDelta(deltaDownstream DeltaDiscoveryStream, res *discovery.DeltaDiscoveryResponse) error {
    	tStart := time.Now()
    	defer func() {
    		// This is a hint to help debug slow responses.
    		if time.Since(tStart) > 10*time.Second {
    			proxyLog.Warnf("sendDownstreamDelta took %v", time.Since(tStart))
    		}
    	}()
    	return deltaDownstream.Send(res)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/compile.go

    				}
    			}
    		}
    
    		tStart := time.Now()
    		p.fn(f)
    		tEnd := time.Now()
    
    		// Need something less crude than "Log the whole intermediate result".
    		if f.Log() || f.HTMLWriter != nil {
    			time := tEnd.Sub(tStart).Nanoseconds()
    			var stats string
    			if logMemStats {
    				var mEnd runtime.MemStats
    				runtime.ReadMemStats(&mEnd)
    				nBytes := mEnd.TotalAlloc - mStart.TotalAlloc
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy.go

    // sendDownstream sends discovery response.
    func sendDownstream(downstream adsStream, response *discovery.DiscoveryResponse) error {
    	tStart := time.Now()
    	defer func() {
    		// This is a hint to help debug slow responses.
    		if time.Since(tStart) > 10*time.Second {
    			proxyLog.Warnf("sendDownstream took %v", time.Since(tStart))
    		}
    	}()
    	return downstream.Send(response)
    }
    
    func (p *XdsProxy) close() {
    	close(p.stopChan)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  7. src/runtime/mgc.go

    		return
    	}
    
    	// Increment mp.locks when allocating. We are called within gcStart,
    	// and thus must not trigger another gcStart via an allocation. gcStart
    	// bails when allocating with locks held, so simulate that for these
    	// allocations.
    	//
    	// TODO(prattmic): cleanup gcStart to use a more explicit "in gcStart"
    	// check for bailing.
    	mp := acquirem()
    	ready := make(chan struct{}, 1)
    	releasem(mp)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  8. src/runtime/mgcmark.go

    			return
    		}
    	}
    	if !enteredMarkAssistForTracing {
    		trace := traceAcquire()
    		if trace.ok() {
    			trace.GCMarkAssistStart()
    			// Set this *after* we trace the start, otherwise we may
    			// emit an in-progress event for an assist we're about to start.
    			gp.inMarkAssist = true
    			traceRelease(trace)
    		} else {
    			gp.inMarkAssist = true
    		}
    		// In the new tracer, set enter mark assist tracing if we
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/start.go

    // first running goroutine in the traceback.
    //
    // If either of these flags is set, Start re-executes the current
    // executable as a child process, in a special mode in which it
    // acts as a telemetry sidecar for the parent process (the application).
    // In that mode, the call to Start will never return, so Start must
    // be called immediately within main, even before such things as
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 14:52:56 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  10. src/cmd/trace/jsontrace.go

    	slices.SortStableFunc(opts.tasks, func(a, b *trace.UserTaskSummary) int {
    		aStart, bStart := parsed.startTime(), parsed.startTime()
    		if a.Start != nil {
    			aStart = a.Start.Time()
    		}
    		if b.Start != nil {
    			bStart = b.Start.Time()
    		}
    		if a.Start != b.Start {
    			return cmp.Compare(aStart, bStart)
    		}
    		// Break ties with the end time.
    		aEnd, bEnd := parsed.endTime(), parsed.endTime()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top