Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Take (0.16 sec)

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

    	// a job control shell and from a shell script.
    	setsid();
    
    	if (verbose) {
    		printf("calling RunGoroutines\n");
    	}
    
    	RunGoroutines();
    
    	// Block SIGIO in this thread to make it more likely that it
    	// will be delivered to a goroutine.
    
    	if (verbose) {
    		printf("calling pthread_sigmask\n");
    	}
    
    	if (sigemptyset(&mask) < 0) {
    		die("sigemptyset");
    	}
    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

    	if (fn == NULL) {
    		fprintf(stderr, "%s\n", dlerror());
    		exit(EXIT_FAILURE);
    	}
    
    	if (verbose) {
    		fprintf(stderr, "calling RunGoroutines\n");
    	}
    
    	fn();
    
    	// Block SIGIO in this thread to make it more likely that it
    	// will be delivered to a goroutine.
    
    	if (verbose) {
    		fprintf(stderr, "calling pthread_sigmask\n");
    	}
    
    	if (sigemptyset(&mask) < 0) {
    		die("sigemptyset");
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 4.2K bytes
    - Viewed (0)
Back to top