Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for POINT (0.17 sec)

  1. src/cmd/cgo/internal/testcshared/testdata/main5.c

    		fprintf(stderr, "calling dlopen\n");
    	}
    
    	handle = dlopen(argv[1], RTLD_NOW | RTLD_GLOBAL);
    	if (handle == NULL) {
    		fprintf(stderr, "%s\n", dlerror());
    		exit(EXIT_FAILURE);
    	}
    
    	// At this point there should not be a Go signal handler
    	// installed for SIGIO.
    
    	if (verbose) {
    		fprintf(stderr, "raising SIGIO\n");
    	}
    
    	if (raise(SIGIO) < 0) {
    		die("raise");
    	}
    
    	if (verbose) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testcarchive/testdata/main3.c

    	sa.sa_sigaction = ioHandler;
    	if (sigemptyset(&sa.sa_mask) < 0) {
    		die("sigemptyset");
    	}
    	sa.sa_flags = SA_SIGINFO;
    	if (sigaction(SIGIO, &sa, NULL) < 0) {
    		die("sigaction");
    	}
    
    	// At this point there should not be a Go signal handler
    	// installed for SIGIO.
    
    	if (verbose) {
    		printf("raising SIGIO\n");
    	}
    
    	if (raise(SIGIO) < 0) {
    		die("raise");
    	}
    
    	if (verbose) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top