Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for ptid1 (2.72 sec)

  1. pkg/test/framework/suite_test.go

    		errCode1 = errCode
    		waitForExit1Call.Done()
    	}
    
    	var exit2Called bool
    	var errCode2 int
    	exitFn2 := func(errCode int) {
    		exit2Called = true
    		errCode2 = errCode
    	}
    
    	s := newTestSuite("tid1", runFn1, exitFn1, defaultSettingsFn)
    
    	s2 := newTestSuite("tid2", runFn2, exitFn2, defaultSettingsFn)
    
    	go s.Run()
    	waitForRun1.Wait()
    
    	s2.Run()
    	waitForTestCompletion.Done()
    	waitForExit1Call.Wait()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  2. src/runtime/sys_linux_mipsx.s

    	MOVW	R2, ret+24(FP)
    	RET
    
    
    // int32 clone(int32 flags, void *stk, M *mp, G *gp, void (*fn)(void));
    TEXT runtime·clone(SB),NOSPLIT|NOFRAME,$0-24
    	MOVW	flags+0(FP), R4
    	MOVW	stk+4(FP), R5
    	MOVW	R0, R6	// ptid
    	MOVW	R0, R7	// tls
    
    	// O32 syscall handler unconditionally copies arguments 5-8 from stack,
    	// even for syscalls with less than 8 arguments. Reserve 32 bytes of new
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 18 20:57:24 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  3. src/runtime/runtime-gdb.py

    	# Otherwise, the goroutine is running, so it doesn't have
    	# saved scheduler state. Find G's OS thread.
    	m = ptr['m']
    	if m == 0:
    		return None, None
    	for thr in gdb.selected_inferior().threads():
    		if thr.ptid[1] == m['procid']:
    			break
    	else:
    		return None, None
    	# Get scheduler state from the G's OS thread state.
    	curthr = gdb.selected_thread()
    	try:
    		thr.switch()
    		pc = gdb.parse_and_eval('$pc')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 10 12:59:20 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/bpxsvc_zos.go

    	QUIESCE_UNFREEZE   int32 = 5
    	FREEZE_THIS_THREAD int32 = 6
    	FREEZE_EXIT        int32 = 8
    	QUIESCE_SRB        int32 = 9
    )
    
    type Pgtha struct {
    	Pid        uint32 // 0
    	Tid0       uint32 // 4
    	Tid1       uint32
    	Accesspid  byte    // C
    	Accesstid  byte    // D
    	Accessasid uint16  // E
    	Loginname  [8]byte // 10
    	Flag1      byte    // 18
    	Flag1b2    byte    // 19
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top