Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 134 for SYS_exit (0.14 sec)

  1. src/syscall/mksysnum_dragonfly.pl

    		$name =~ y/a-z/A-Z/;
    
    		# There are multiple entries for enosys and nosys, so comment them out.
    		if($name =~ /^SYS_E?NOSYS$/){
    			$name = "// $name";
    		}
    		if($name eq 'SYS_SYS_EXIT'){
    			$name = 'SYS_EXIT';
    		}
    
    		print "	$name = $num;  // $proto\n";
    	}
    }
    
    print <<EOF;
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 866 bytes
    - Viewed (0)
  2. src/syscall/mksysnum_openbsd.pl

    		$name =~ y/a-z/A-Z/;
    
    		# There are multiple entries for enosys and nosys, so comment them out.
    		if($name =~ /^SYS_E?NOSYS$/){
    			$name = "// $name";
    		}
    		if($name eq 'SYS_SYS_EXIT'){
    			$name = 'SYS_EXIT';
    		}
    
    		print "	$name = $num;  // $proto\n";
    	}
    }
    
    print <<EOF;
    )
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 29 08:08:26 UTC 2020
    - 872 bytes
    - Viewed (0)
  3. src/syscall/mksysnum_freebsd.pl

    		$name =~ y/a-z/A-Z/;
    
    		# There are multiple entries for enosys and nosys, so comment them out.
    		if($name =~ /^SYS_E?NOSYS$/){
    			$name = "// $name";
    		}
    		if($name eq 'SYS_SYS_EXIT'){
    			$name = 'SYS_EXIT';
    		}
    		if($name =~ /^SYS_CAP_+/ || $name =~ /^SYS___CAP_+/){
    			next
    		}
    
    		print "	$name = $num;  // $proto\n";
    
    		# We keep Capsicum syscall numbers for FreeBSD
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 14 13:21:46 UTC 2018
    - 1.3K bytes
    - Viewed (0)
  4. src/runtime/rt0_netbsd_arm64.s

    DATA _rt0_arm64_netbsd_lib_argv<>(SB)/8, $0
    GLOBL _rt0_arm64_netbsd_lib_argv<>(SB),NOPTR, $8
    
    
    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$runtime·rt0_go(SB), R2
    	BL	(R2)
    exit:
    	MOVD	$0, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  5. src/runtime/rt0_darwin_arm64.s

    #include "textflag.h"
    #include "cgo/abi_arm64.h"
    
    TEXT _rt0_arm64_darwin(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$runtime·rt0_go(SB), R2
    	BL	(R2)
    exit:
    	MOVD	$0, R0
    	MOVD	$1, R16	// sys_exit
    	SVC	$0x80
    	B	exit
    
    // When linking with -buildmode=c-archive or -buildmode=c-shared,
    // this symbol is called from a global initialization function.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  6. src/runtime/rt0_openbsd_arm64.s

    DATA _rt0_arm64_openbsd_lib_argv<>(SB)/8, $0
    GLOBL _rt0_arm64_openbsd_lib_argv<>(SB),NOPTR, $8
    
    
    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$runtime·rt0_go(SB), R2
    	BL	(R2)
    exit:
    	MOVD	$0, R0
    	MOVD	$1, R8		// sys_exit
    	INVOKE_SYSCALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 2K bytes
    - Viewed (0)
  7. src/runtime/rt0_linux_arm64.s

    DATA _rt0_arm64_linux_lib_argv<>(SB)/8, $0
    GLOBL _rt0_arm64_linux_lib_argv<>(SB),NOPTR, $8
    
    
    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$runtime·rt0_go(SB), R2
    	BL	(R2)
    exit:
    	MOVD $0, R0
    	MOVD	$94, R8	// sys_exit
    	SVC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  8. src/runtime/rt0_freebsd_arm64.s

    DATA _rt0_arm64_freebsd_lib_argv<>(SB)/8, $0
    GLOBL _rt0_arm64_freebsd_lib_argv<>(SB),NOPTR, $8
    
    
    TEXT main(SB),NOSPLIT|NOFRAME,$0
    	MOVD	$runtime·rt0_go(SB), R2
    	BL	(R2)
    exit:
    	MOVD	$0, R0
    	MOVD	$1, R8	// SYS_exit
    	SVC
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 30 01:28:43 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  9. src/runtime/sys_netbsd_amd64.s

    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "cgo/abi_amd64.h"
    
    #define CLOCK_REALTIME		0
    #define CLOCK_MONOTONIC		3
    
    #define SYS_exit			1
    #define SYS_read			3
    #define SYS_write			4
    #define SYS_open			5
    #define SYS_close			6
    #define SYS_getpid			20
    #define SYS_kill			37
    #define SYS_munmap			73
    #define SYS_madvise			75
    #define SYS_fcntl			92
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/runtime/sys_netbsd_386.s

    // /usr/src/sys/kern/syscalls.master for syscall numbers.
    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    
    #define CLOCK_REALTIME		0
    #define CLOCK_MONOTONIC		3
    
    #define SYS_exit			1
    #define SYS_read			3
    #define SYS_write			4
    #define SYS_open			5
    #define SYS_close			6
    #define SYS_getpid			20
    #define SYS_kill			37
    #define SYS_munmap			73
    #define SYS_madvise			75
    #define SYS_fcntl			92
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.6K bytes
    - Viewed (0)
Back to top