Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 433 for abortCh (0.27 sec)

  1. src/runtime/cgo/libcgo.h

     */
    uintptr_t _cgo_wait_runtime_init_done(void);
    
    /*
     * Get the low and high boundaries of the stack.
     */
    void x_cgo_getstackbound(uintptr bounds[2]);
    
    /*
     * Prints error then calls abort. For linux and android.
     */
    void fatalf(const char* format, ...) __attribute__ ((noreturn));
    
    /*
     * Registers the current mach thread port for EXC_BAD_ACCESS processing.
     */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 13 20:50:04 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/runtime/cgo/gcc_darwin_arm64.c

    	err = _cgo_try_pthread_create(&p, &attr, threadentry, ts);
    
    	pthread_sigmask(SIG_SETMASK, &oset, nil);
    
    	if (err != 0) {
    		fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
    		abort();
    	}
    }
    
    extern void crosscall1(void (*fn)(void), void (*setg_gcc)(void*), void *g);
    static void*
    threadentry(void *v)
    {
    	ThreadStart ts;
    
    	ts = *(ThreadStart*)v;
    	free(v);
    
    #if TARGET_OS_IPHONE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 09 03:13:11 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    	{8, "SIGFPE", "floating point exception"},
    	{9, "SIGKILL", "killed"},
    	{10, "SIGUSR1", "user defined signal 1"},
    	{11, "SIGSEGV", "segmentation fault"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    	{8, "SIGFPE", "floating point exception"},
    	{9, "SIGKILL", "killed"},
    	{10, "SIGUSR1", "user defined signal 1"},
    	{11, "SIGSEGV", "segmentation fault"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go

    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    	{8, "SIGFPE", "floating point exception"},
    	{9, "SIGKILL", "killed"},
    	{10, "SIGUSR1", "user defined signal 1"},
    	{11, "SIGSEGV", "segmentation fault"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go

    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    	{8, "SIGFPE", "floating point exception"},
    	{9, "SIGKILL", "killed"},
    	{10, "SIGUSR1", "user defined signal 1"},
    	{11, "SIGSEGV", "segmentation fault"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  7. src/runtime/cgo/gcc_android.c

    	va_start(ap, format);
    	vfprintf(stderr, format, ap);
    	va_end(ap);
    	fprintf(stderr, "\n");
    
    	va_start(ap, format);
    	__android_log_vprint(ANDROID_LOG_FATAL, "runtime/cgo", format, ap);
    	va_end(ap);
    
    	abort();
    }
    
    // Truncated to a different magic value on 32-bit; that's ok.
    #define magic1 (0x23581321345589ULL)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 09 23:17:17 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. src/runtime/signal_solaris.go

    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction (not reset when caught)"},
    	/* 5 */ {_SigThrow + _SigUnblock, "SIGTRAP: trace trap (not reset when caught)"},
    	/* 6 */ {_SigNotify + _SigThrow, "SIGABRT: used by abort, replace SIGIOT in the future"},
    	/* 7 */ {_SigThrow, "SIGEMT: EMT instruction"},
    	/* 8 */ {_SigPanic + _SigUnblock, "SIGFPE: floating point exception"},
    	/* 9 */ {0, "SIGKILL: kill (cannot be caught or ignored)"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 20:27:15 UTC 2019
    - 4.5K bytes
    - Viewed (0)
  9. docs/lambda/README.md

    ## Example Lambda handler
    
    Install the necessary dependencies.
    ```sh
    pip install flask requests
    ```
    
    Following is an example lambda handler.
    ```py
    from flask import Flask, request, abort, make_response
    import requests
    
    app = Flask(__name__)
    @app.route('/', methods=['POST'])
    def get_webhook():
    	if request.method == 'POST':
    		# obtain the request event from the 'POST' call
    		event = request.json
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Apr 04 19:15:28 UTC 2023
    - 7.6K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go

    	desc string
    }{
    	{1, "SIGHUP", "hangup"},
    	{2, "SIGINT", "interrupt"},
    	{3, "SIGQUIT", "quit"},
    	{4, "SIGILL", "illegal instruction"},
    	{5, "SIGTRAP", "trace/breakpoint trap"},
    	{6, "SIGABRT", "aborted"},
    	{7, "SIGBUS", "bus error"},
    	{8, "SIGFPE", "floating point exception"},
    	{9, "SIGKILL", "killed"},
    	{10, "SIGUSR1", "user defined signal 1"},
    	{11, "SIGSEGV", "segmentation fault"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 19:00:13 UTC 2024
    - 36.8K bytes
    - Viewed (0)
Back to top