Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 33 of 33 for ProcID (0.4 sec)

  1. src/runtime/traceevent.go

    		w = w.writeProcStatus(uint64(pp.id), procStatus, pp.trace.inSweep)
    	}
    	if gp := tl.mp.curg; gp != nil && !gp.trace.statusWasTraced(tl.gen) && gp.trace.acquireStatus(tl.gen) {
    		w = w.writeGoStatus(uint64(gp.goid), int64(tl.mp.procid), goStatus, gp.inMarkAssist, 0 /* no stack */)
    	}
    	return traceEventWriter{w}
    }
    
    // commit writes out a trace event and calls end. It's a helper to make the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. src/internal/trace/internal/testgen/go122/trace.go

    	case "gstatus":
    		u = uint64(arg.(go122.GoStatus))
    	case "g":
    		u = uint64(arg.(trace.GoID))
    	case "m":
    		u = uint64(arg.(trace.ThreadID))
    	case "p":
    		u = uint64(arg.(trace.ProcID))
    	case "string":
    		u = b.gen.String(arg.(string))
    	case "task":
    		u = uint64(arg.(trace.TaskID))
    	default:
    		panic(fmt.Sprintf("unsupported arg type %q for spec %q", typStr, argSpec))
    	}
    	return u
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  3. src/runtime/sys_linux_mipsx.s

    	// Check that SP is as we expect
    	NOP	R29	// tell vet R29/SP changed - stop checking offsets
    	MOVW	12(R29), R16
    	MOVW	$1234, R1
    	BEQ	R16, R1, 2(PC)
    	MOVW	(R0), R0
    
    	// Initialize m->procid to Linux tid
    	MOVW	$SYS_gettid, R2
    	SYSCALL
    
    	MOVW	0(R29), R16	// m
    	MOVW	4(R29), R17	// g
    	MOVW	8(R29), R18	// fn
    
    	BEQ	R16, nog
    	BEQ	R17, nog
    
    	MOVW	R2, m_procid(R16)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
Back to top