Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 347 for exit_1 (0.15 sec)

  1. src/runtime/sys_linux_386.s

    	INT $3	// not reached
    	RET
    
    TEXT exit1<>(SB),NOSPLIT,$0
    	MOVL	$SYS_exit, AX
    	MOVL	code+0(FP), BX
    	INVOKE_SYSCALL
    	INT $3	// not reached
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT,$0-4
    	MOVL	wait+0(FP), AX
    	// We're done using the stack.
    	MOVL	$0, (AX)
    	MOVL	$1, AX	// exit (just this thread)
    	MOVL	$0, BX	// exit code
    	INT	$0x80	// no stack; must not use CALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  2. src/runtime/os_openbsd.go

    	minitSignals()
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    func mdestroy(mp *m) {
    }
    
    func sigtramp()
    
    type sigactiont struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    			},
    		},
    		"Kill pod if all containers exited except ephemeral container": {
    			mutatePodFn: func(pod *v1.Pod) {
    				pod.Spec.RestartPolicy = v1.RestartPolicyNever
    			},
    			mutateStatusFn: func(status *kubecontainer.PodStatus) {
    				// all regular containers exited
    				for i := 0; i < 3; i++ {
    					status.ContainerStatuses[i].State = kubecontainer.ContainerStateExited
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/JavaProcessStackTracesMonitor.java

                    }
                    return sb.toString();
                } catch (Throwable e) {
                    // e.g. java.lang.IllegalThreadStateException: process has not exited
                    //          at java.base/java.lang.ProcessImpl.exitValue(ProcessImpl.java:553)
                    StringWriter sw = new StringWriter();
                    PrintWriter pw = new PrintWriter(sw);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/worker/TestWorker.java

                }
            } finally {
                LOGGER.info("{} finished executing tests.", workerProcessContext.getDisplayName());
    
                // In the event that the main thread exits with an uncaught exception, stop processing
                // and clear out the run queue to unblock any running communication threads
                synchronized(this) {
                    state = State.STOPPED;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. internal/logger/logrotate.go

    func (w *Writer) Write(p []byte) (n int, err error) {
    	return w.pw.Write(p)
    }
    
    // Close closes the writer.
    // Any accepted writes will be flushed. Any new writes will be rejected.
    // Once Close() exits, files are synchronized to disk.
    func (w *Writer) Close() error {
    	w.pw.CloseWithError(nil)
    
    	if w.f != nil {
    		if err := w.closeCurrentFile(); err != nil {
    			return err
    		}
    	}
    
    	return nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_aix.go

    func (w WaitStatus) StopSignal() Signal {
    	if !w.Stopped() {
    		return -1
    	}
    	return Signal(w>>8) & 0xFF
    }
    
    func (w WaitStatus) Exited() bool { return w&0xFF == 0 }
    func (w WaitStatus) ExitStatus() int {
    	if !w.Exited() {
    		return -1
    	}
    	return int((w >> 8) & 0xFF)
    }
    
    func (w WaitStatus) Signaled() bool { return w&0x40 == 0 && w&0xFF != 0 }
    func (w WaitStatus) Signal() Signal {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  8. src/runtime/coro.go

    		// as lightweight as absolutely possible.
    		// (The atomic load is free on x86 but not free elsewhere.)
    		next := c.gp
    		if next.ptr() == nil {
    			throw("coroswitch on exited coro")
    		}
    		var self guintptr
    		self.set(gp)
    		if c.gp.cas(next, self) {
    			gnext = next.ptr()
    			break
    		}
    	}
    
    	// Check if we're switching to ourselves. This case is able to break our
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:09:18 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/telemetry/internal/crashmonitor/monitor.go

    	if err != nil {
    		log.Fatalf("failed to read from input pipe: %v", err)
    	}
    
    	// If the only line is the sentinel, it wasn't a crash.
    	if bytes.Count(data, []byte("\n")) < 2 {
    		childExitHook()
    		os.Exit(0) // parent exited without crash report
    	}
    
    	log.Printf("parent reported crash:\n%s", data)
    
    	// Parse the stack out of the crash report
    	// and record a telemetry count for it.
    	name, err := telemetryCounterName(data)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:57:25 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/plan9/syscall_plan9.go

    	RawSyscall(SYS_ERRSTR, uintptr(unsafe.Pointer(&buf[0])), uintptr(len(buf)), 0)
    
    	buf[len(buf)-1] = 0
    	return cstring(buf[:])
    }
    
    // Implemented in assembly to import from runtime.
    func exit(code int)
    
    func Exit(code int) { exit(code) }
    
    func readnum(path string) (uint, error) {
    	var b [12]byte
    
    	fd, e := Open(path, O_RDONLY)
    	if e != nil {
    		return 0, e
    	}
    	defer Close(fd)
    
    	n, e := Pread(fd, b[:], 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 7K bytes
    - Viewed (0)
Back to top