Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for longjmp (0.09 sec)

  1. src/cmd/cgo/internal/testcarchive/testdata/main2.c

    		die("sigaddset");
    	}
    	i = sigprocmask(SIG_UNBLOCK, &mask, NULL);
    	if (i != 0) {
    		fprintf(stderr, "sigprocmask: %s\n", strerror(i));
    		exit(EXIT_FAILURE);
    	}
    
    	// Don't try this at home.
    	longjmp(jmp, signo);
    
    	// We should never get here.
    	abort();
    }
    
    // Set up the signal handlers in a high priority constructor,
    // so that they are installed before the Go code starts.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcshared/testdata/main4.c

    		die("sigaddset");
    	}
    	i = sigprocmask(SIG_UNBLOCK, &mask, NULL);
    	if (i != 0) {
    		fprintf(stderr, "sigprocmask: %s\n", strerror(i));
    		exit(EXIT_FAILURE);
    	}
    
    	// Don't try this at home.
    	longjmp(jmp, signo);
    
    	// We should never get here.
    	abort();
    }
    
    int main(int argc, char** argv) {
    	int verbose;
    	struct sigaction sa;
    	void* handle;
    	void (*fn)(void);
    	sigset_t mask;
    	int i;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/RemoteDependencyResolveConsoleIntegrationTest.groovy

            def getM1Pom = server.get(m1.pom.path).sendSomeAndBlock(longXml(m1.pom.file))
            def getM2Pom = server.get(m2.pom.path).sendSomeAndBlock(longXml(m2.pom.file))
            def metaData = server.expectConcurrentAndBlock(getM1Pom, getM2Pom)
            def getM1Jar = server.get(m1.artifact.path).sendSomeAndBlock(longJar(m1.artifact.file))
            def getM2Jar = server.get(m2.artifact.path).sendSomeAndBlock(longJar(m2.artifact.file))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 14 00:59:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  4. src/strconv/ftoa_test.go

    	fmt     byte
    	prec    int
    	bitSize int
    }{
    	{"Decimal", 33909, 'g', -1, 64},
    	{"Float", 339.7784, 'g', -1, 64},
    	{"Exp", -5.09e75, 'g', -1, 64},
    	{"NegExp", -5.11e-95, 'g', -1, 64},
    	{"LongExp", 1.234567890123456e-78, 'g', -1, 64},
    
    	{"Big", 123456789123456789123456789, 'g', -1, 64},
    	{"BinaryExp", -1, 'b', -1, 64},
    
    	{"32Integer", 33909, 'g', -1, 32},
    	{"32ExactFraction", 3.375, 'g', -1, 32},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 24 23:50:20 UTC 2022
    - 9.3K bytes
    - Viewed (0)
Back to top