Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for Hangul (0.28 sec)

  1. src/syscall/errors_plan9.go

    	EAFNOSUPPORT = NewError("address family not supported by protocol")
    	ESPIPE       = NewError("illegal seek")
    )
    
    // Notes
    const (
    	SIGABRT = Note("abort")
    	SIGALRM = Note("alarm")
    	SIGHUP  = Note("hangup")
    	SIGINT  = Note("interrupt")
    	SIGKILL = Note("kill")
    	SIGTERM = Note("interrupt")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 22 13:31:24 UTC 2017
    - 1.6K bytes
    - Viewed (0)
  2. src/runtime/netpoll_wasip1.go

    	for i := 0; i < int(nevents); i++ {
    		e := &evts[i]
    		if e.typ == eventtypeClock {
    			continue
    		}
    
    		hangup := e.fdReadwrite.flags&fdReadwriteHangup != 0
    		var mode int32
    		if e.typ == eventtypeFdRead || e.error != 0 || hangup {
    			mode += 'r'
    		}
    		if e.typ == eventtypeFdWrite || e.error != 0 || hangup {
    			mode += 'w'
    		}
    		if mode != 0 {
    			pd := (*pollDesc)(unsafe.Pointer(uintptr(e.userdata)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 18:23:49 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. src/runtime/signal_plan9.go

    	// Kill is sent by external programs to cause an exit.
    	{_SigKill, "kill"},
    
    	// Interrupts can be handled if desired, otherwise they cause an exit.
    	{_SigNotify + _SigKill, "interrupt"},
    	{_SigNotify + _SigKill, "hangup"},
    
    	// Alarms can be handled if desired, otherwise they're ignored.
    	{_SigNotify, "alarm"},
    
    	// Aborts can be handled if desired, otherwise they cause a stack trace.
    	{_SigNotify + _SigThrow, "abort"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 07 16:25:17 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  4. src/net/tcpsock_plan9.go

    }
    
    func (ln *TCPListener) close() error {
    	if err := ln.fd.pfd.Close(); err != nil {
    		return err
    	}
    	if _, err := ln.fd.ctl.WriteString("hangup"); err != nil {
    		ln.fd.ctl.Close()
    		return err
    	}
    	if err := ln.fd.ctl.Close(); err != nil {
    		return err
    	}
    	return nil
    }
    
    func (ln *TCPListener) file() (*os.File, error) {
    	f, err := ln.dup()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. src/runtime/signal_freebsd.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	/* 0 */ {0, "SIGNONE: no trap"},
    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  6. src/runtime/signal_openbsd.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	/*  0 */ {0, "SIGNONE: no trap"},
    	/*  1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/*  2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/*  3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/*  4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 22 18:58:08 UTC 2021
    - 2.2K bytes
    - Viewed (0)
  7. src/runtime/signal_darwin.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	/* 0 */ {0, "SIGNONE: no trap"},
    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.1K bytes
    - Viewed (0)
  8. src/runtime/signal_dragonfly.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	/* 0 */ {0, "SIGNONE: no trap"},
    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  9. src/runtime/signal_netbsd.go

    // license that can be found in the LICENSE file.
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	/*  0 */ {0, "SIGNONE: no trap"},
    	/*  1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/*  2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/*  3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/*  4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 07:40:19 UTC 2017
    - 2.2K bytes
    - Viewed (0)
  10. src/runtime/sigtab_linux_generic.go

    //go:build !mips && !mipsle && !mips64 && !mips64le && linux
    
    package runtime
    
    var sigtable = [...]sigTabT{
    	/* 0 */ {0, "SIGNONE: no trap"},
    	/* 1 */ {_SigNotify + _SigKill, "SIGHUP: terminal line hangup"},
    	/* 2 */ {_SigNotify + _SigKill, "SIGINT: interrupt"},
    	/* 3 */ {_SigNotify + _SigThrow, "SIGQUIT: quit"},
    	/* 4 */ {_SigThrow + _SigUnblock, "SIGILL: illegal instruction"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 3.5K bytes
    - Viewed (0)
Back to top