Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 129 of 129 for SIGSEGV (0.21 sec)

  1. src/internal/fuzz/worker.go

    				return fmt.Errorf("fuzzing process exited unexpectedly due to an internal failure: %w", err)
    			}
    			// Worker exited non-zero or was terminated by a non-interrupt
    			// signal (for example, SIGSEGV) while fuzzing.
    			return fmt.Errorf("fuzzing process hung or terminated unexpectedly: %w", err)
    			// TODO(jayconrod,katiehockman): if -keepfuzzing, restart worker.
    
    		case input := <-w.coordinator.inputC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  2. src/regexp/testdata/testregex.c

    		preg.re_disc = &state.disc.disc;
    #endif
    		if (test & TEST_CATCH)
    		{
    			signal(SIGALRM, gotcha);
    			signal(SIGBUS, gotcha);
    			signal(SIGSEGV, gotcha);
    		}
    		while (p = getline(fp))
    		{
    
    		/* parse: */
    
    			line = p;
    			if (*p == ':' && !isspace(*(p + 1)))
    			{
    				while (*++p && *p != ':');
    				if (!*p++)
    				{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	SIGHUP  = Signal(0x1)
    	SIGINT  = Signal(0x2)
    	SIGQUIT = Signal(0x3)
    	SIGILL  = Signal(0x4)
    	SIGTRAP = Signal(0x5)
    	SIGABRT = Signal(0x6)
    	SIGBUS  = Signal(0x7)
    	SIGFPE  = Signal(0x8)
    	SIGKILL = Signal(0x9)
    	SIGSEGV = Signal(0xb)
    	SIGPIPE = Signal(0xd)
    	SIGALRM = Signal(0xe)
    	SIGTERM = Signal(0xf)
    )
    
    var signals = [...]string{
    	1:  "hangup",
    	2:  "interrupt",
    	3:  "quit",
    	4:  "illegal instruction",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux.go

    	SIGILL  = syscall.Signal(0x4)
    	SIGINT  = syscall.Signal(0x2)
    	SIGIOT  = syscall.Signal(0x6)
    	SIGKILL = syscall.Signal(0x9)
    	SIGPIPE = syscall.Signal(0xd)
    	SIGQUIT = syscall.Signal(0x3)
    	SIGSEGV = syscall.Signal(0xb)
    	SIGTERM = syscall.Signal(0xf)
    	SIGTRAP = syscall.Signal(0x5)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 185.8K bytes
    - Viewed (0)
  5. src/runtime/asm_ppc64x.s

    	MOVBU	1(R3), R6;		\
    	MOVBU	R6, 1(R5);		\
    	SUB	$1, R4;			\
    	CMP	$0, R4;			\
    	BGT	tail;			\
    callfn: \
    	/* call function */			\
    	MOVD	f+8(FP), R11;			\
    #ifdef GOOS_aix				\
    	/* AIX won't trigger a SIGSEGV if R11 = nil */	\
    	/* So it manually triggers it */	\
    	CMP	R11, $0				\
    	BNE	2(PC)				\
    	MOVD	R0, 0(R0)			\
    #endif						\
    	MOVD    regArgs+40(FP), R20;    \
    	BL      runtimeĀ·unspillArgs(SB);        \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ppc64/ssa.go

    			p.To.Type = obj.TYPE_CONST
    			p.To.Offset = 0
    
    			// BNE 2(PC)
    			p2 := s.Prog(ppc64.ABNE)
    			p2.To.Type = obj.TYPE_BRANCH
    
    			// STW R0, 0(R0)
    			// Write at 0 is forbidden and will trigger a SIGSEGV
    			p = s.Prog(ppc64.AMOVW)
    			p.From.Type = obj.TYPE_REG
    			p.From.Reg = ppc64.REG_R0
    			p.To.Type = obj.TYPE_MEM
    			p.To.Reg = ppc64.REG_R0
    
    			// NOP (so the BNE has somewhere to land)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:59:38 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"SIGLIBRT", Const, 1},
    		{"SIGLWP", Const, 0},
    		{"SIGPIPE", Const, 0},
    		{"SIGPOLL", Const, 0},
    		{"SIGPROF", Const, 0},
    		{"SIGPWR", Const, 0},
    		{"SIGQUIT", Const, 0},
    		{"SIGSEGV", Const, 0},
    		{"SIGSTKFLT", Const, 0},
    		{"SIGSTOP", Const, 0},
    		{"SIGSYS", Const, 0},
    		{"SIGTERM", Const, 0},
    		{"SIGTHR", Const, 0},
    		{"SIGTRAP", Const, 0},
    		{"SIGTSTP", Const, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  8. api/go1.txt

    pkg syscall, const SIGILL Signal
    pkg syscall, const SIGINT Signal
    pkg syscall, const SIGKILL Signal
    pkg syscall, const SIGPIPE Signal
    pkg syscall, const SIGQUIT Signal
    pkg syscall, const SIGSEGV Signal
    pkg syscall, const SIGTERM Signal
    pkg syscall, const SIGTRAP Signal
    pkg syscall, const SOCK_DGRAM ideal-int
    pkg syscall, const SOCK_RAW ideal-int
    pkg syscall, const SOCK_SEQPACKET ideal-int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 14 18:58:28 UTC 2013
    - 1.7M bytes
    - Viewed (0)
  9. api/go1.1.txt

    pkg syscall, const SIGHUP = 1
    pkg syscall, const SIGILL = 4
    pkg syscall, const SIGINT = 2
    pkg syscall, const SIGKILL = 9
    pkg syscall, const SIGPIPE = 13
    pkg syscall, const SIGQUIT = 3
    pkg syscall, const SIGSEGV = 11
    pkg syscall, const SIGTERM = 15
    pkg syscall, const SIGTRAP = 5
    pkg syscall, const SOCK_DGRAM = 2
    pkg syscall, const SOCK_RAW = 3
    pkg syscall, const SOCK_SEQPACKET = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 31 20:37:15 UTC 2022
    - 2.6M bytes
    - Viewed (0)
Back to top