Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for thread_set_exception_ports (0.64 sec)

  1. src/runtime/cgo/gcc_signal_ios_arm64.c

    	if (ret) {
    		fprintf(stderr, "runtime/cgo: mach_port_insert_right failed: %d\n", ret);
    		abort();
    	}
    
    	ret = thread_set_exception_ports(
    		mach_thread_self(),
    		EXC_MASK_BAD_ACCESS,
    		port,
    		EXCEPTION_DEFAULT,
    		THREAD_STATE_NONE);
    	if (ret) {
    		fprintf(stderr, "runtime/cgo: thread_set_exception_ports failed: %d\n", ret);
    		abort();
    	}
    
    	ret = pthread_mutex_lock(&mach_exception_handler_port_set_mu);
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 21:04:22 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top