Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for sigreap (0.11 sec)

  1. build/pause/linux/pause.c

    #define VERSION_STRING(x) STRINGIFY(x)
    
    #ifndef VERSION
    #define VERSION HEAD
    #endif
    
    static void sigdown(int signo) {
      psignal(signo, "Shutting down, got signal");
      exit(0);
    }
    
    static void sigreap(int signo) {
      while (waitpid(-1, NULL, WNOHANG) > 0)
        ;
    }
    
    int main(int argc, char **argv) {
      int i;
      for (i = 1; i < argc; ++i) {
        if (!strcasecmp(argv[i], "-v")) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Sep 26 13:26:24 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  2. src/runtime/signal_darwin_amd64.go

    		// leaving no way to distinguish a breakpoint-induced SIGTRAP
    		// from an asynchronous signal SIGTRAP.
    		// They all look breakpoint-induced by default.
    		// Try looking at the code to see if it's a breakpoint.
    		// The assumption is that we're very unlikely to get an
    		// asynchronous SIGTRAP at just the moment that the
    		// PC started to point at unmapped memory.
    		pc := uintptr(c.rip())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 23:07:11 UTC 2022
    - 4K bytes
    - Viewed (0)
  3. src/runtime/signal_darwin_arm64.go

    		// leaving no way to distinguish a breakpoint-induced SIGTRAP
    		// from an asynchronous signal SIGTRAP.
    		// They all look breakpoint-induced by default.
    		// Try looking at the code to see if it's a breakpoint.
    		// The assumption is that we're very unlikely to get an
    		// asynchronous SIGTRAP at just the moment that the
    		// PC started to point at unmapped memory.
    		pc := uintptr(c.pc())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:03:24 UTC 2019
    - 3.6K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCompileAvoidanceWithIncrementalCompilationIntegrationTest.groovy

            file('settings.gradle') << "include 'a'\n"
            file("a/src/main/${language.name}/ToolImpl.${language.name}") << '''
                import org.apache.commons.math3.util.BigReal;
                public class ToolImpl { public void execute() { BigReal read = BigReal.ONE; } }
    '''
            buildFile << """
                project(':a') {
                    apply plugin: '${language.name}'
    
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  5. src/runtime/testdata/testprognet/signal.go

    package main
    
    import (
    	"os/signal"
    	"syscall"
    )
    
    func init() {
    	register("SignalIgnoreSIGTRAP", SignalIgnoreSIGTRAP)
    }
    
    func SignalIgnoreSIGTRAP() {
    	signal.Ignore(syscall.SIGTRAP)
    	syscall.Kill(syscall.Getpid(), syscall.SIGTRAP)
    	println("OK")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 646 bytes
    - Viewed (0)
  6. src/runtime/defs_netbsd.go

    	SA_SIGINFO = C.SA_SIGINFO
    	SA_RESTART = C.SA_RESTART
    	SA_ONSTACK = C.SA_ONSTACK
    
    	SIGHUP    = C.SIGHUP
    	SIGINT    = C.SIGINT
    	SIGQUIT   = C.SIGQUIT
    	SIGILL    = C.SIGILL
    	SIGTRAP   = C.SIGTRAP
    	SIGABRT   = C.SIGABRT
    	SIGEMT    = C.SIGEMT
    	SIGFPE    = C.SIGFPE
    	SIGKILL   = C.SIGKILL
    	SIGBUS    = C.SIGBUS
    	SIGSEGV   = C.SIGSEGV
    	SIGSYS    = C.SIGSYS
    	SIGPIPE   = C.SIGPIPE
    	SIGALRM   = C.SIGALRM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. src/runtime/defs_linux.go

    	SA_ONSTACK = C.SA_ONSTACK
    	SA_SIGINFO = C.SA_SIGINFO
    
    	SI_KERNEL = C.SI_KERNEL
    	SI_TIMER  = C.SI_TIMER
    
    	SIGHUP    = C.SIGHUP
    	SIGINT    = C.SIGINT
    	SIGQUIT   = C.SIGQUIT
    	SIGILL    = C.SIGILL
    	SIGTRAP   = C.SIGTRAP
    	SIGABRT   = C.SIGABRT
    	SIGBUS    = C.SIGBUS
    	SIGFPE    = C.SIGFPE
    	SIGKILL   = C.SIGKILL
    	SIGUSR1   = C.SIGUSR1
    	SIGSEGV   = C.SIGSEGV
    	SIGUSR2   = C.SIGUSR2
    	SIGPIPE   = C.SIGPIPE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. src/runtime/defs2_linux.go

    	SA_ONSTACK  = C.SA_ONSTACK
    	SA_RESTORER = C.SA_RESTORER
    	SA_SIGINFO  = C.SA_SIGINFO
    
    	SIGHUP    = C.SIGHUP
    	SIGINT    = C.SIGINT
    	SIGQUIT   = C.SIGQUIT
    	SIGILL    = C.SIGILL
    	SIGTRAP   = C.SIGTRAP
    	SIGABRT   = C.SIGABRT
    	SIGBUS    = C.SIGBUS
    	SIGFPE    = C.SIGFPE
    	SIGKILL   = C.SIGKILL
    	SIGUSR1   = C.SIGUSR1
    	SIGSEGV   = C.SIGSEGV
    	SIGUSR2   = C.SIGUSR2
    	SIGPIPE   = C.SIGPIPE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 07 18:28:11 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  9. src/runtime/defs_arm_linux.go

    	SA_ONSTACK  = C.SA_ONSTACK
    	SA_RESTORER = C.SA_RESTORER
    	SA_SIGINFO  = C.SA_SIGINFO
    
    	SIGHUP    = C.SIGHUP
    	SIGINT    = C.SIGINT
    	SIGQUIT   = C.SIGQUIT
    	SIGILL    = C.SIGILL
    	SIGTRAP   = C.SIGTRAP
    	SIGABRT   = C.SIGABRT
    	SIGBUS    = C.SIGBUS
    	SIGFPE    = C.SIGFPE
    	SIGKILL   = C.SIGKILL
    	SIGUSR1   = C.SIGUSR1
    	SIGSEGV   = C.SIGSEGV
    	SIGUSR2   = C.SIGUSR2
    	SIGPIPE   = C.SIGPIPE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.7K bytes
    - Viewed (0)
  10. src/runtime/defs_dragonfly.go

    	SA_SIGINFO = C.SA_SIGINFO
    	SA_RESTART = C.SA_RESTART
    	SA_ONSTACK = C.SA_ONSTACK
    
    	SIGHUP    = C.SIGHUP
    	SIGINT    = C.SIGINT
    	SIGQUIT   = C.SIGQUIT
    	SIGILL    = C.SIGILL
    	SIGTRAP   = C.SIGTRAP
    	SIGABRT   = C.SIGABRT
    	SIGEMT    = C.SIGEMT
    	SIGFPE    = C.SIGFPE
    	SIGKILL   = C.SIGKILL
    	SIGBUS    = C.SIGBUS
    	SIGSEGV   = C.SIGSEGV
    	SIGSYS    = C.SIGSYS
    	SIGPIPE   = C.SIGPIPE
    	SIGALRM   = C.SIGALRM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top