Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for systems (0.42 sec)

  1. src/cmd/vendor/golang.org/x/sys/plan9/mkerrors.sh

    "
    	for i in $errors
    	do
    		echo -E '	'$i,
    	done
    
    	echo -E "
    };
    
    int signals[] = {
    "
    	for i in $signals
    	do
    		echo -E '	'$i,
    	done
    
    	# Use -E because on some systems bash builtin interprets \n itself.
    	echo -E '
    };
    
    static int
    intcmp(const void *a, const void *b)
    {
    	return *(int*)a - *(int*)b;
    }
    
    int
    main(void)
    {
    	int i, j, e;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/mkerrors.sh

    if test -z "$GOARCH" -o -z "$GOOS"; then
    	echo 1>&2 "GOARCH or GOOS not defined in environment"
    	exit 1
    fi
    
    # Check that we are using the new build system if we should
    if [[ "$GOOS" = "linux" ]] && [[ "$GOLANG_SYS_BUILD" != "docker" ]]; then
    	echo 1>&2 "In the Docker based build system, mkerrors should not be called directly."
    	echo 1>&2 "See README.md"
    	exit 1
    fi
    
    if [[ "$GOOS" = "aix" ]]; then
    	CC=${CC:-gcc}
    else
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/plan9/mkall.sh

    # actual data structures that pass through to the kernel system calls.
    # Some C libraries present alternate versions for binary compatibility
    # and translate them on the way in and out of system calls, but
    # there is almost always a #define that can get the real ones.
    # See types_darwin.c and types_linux.c for examples.
    #
    # * zerror_${GOOS}_${GOARCH}.go
    #
    # This machine-generated file defines the system's error numbers,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 15 19:02:39 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/mkall.sh

    # This script runs or (given -n) prints suggested commands to generate files for
    # the Architecture/OS specified by the GOARCH and GOOS environment variables.
    # See README.md for more information about how the build system works.
    
    GOOSARCH="${GOOS}_${GOARCH}"
    
    # defaults
    mksyscall="go run mksyscall.go"
    mkerrors="./mkerrors.sh"
    zerrors="zerrors_$GOOSARCH.go"
    mksysctl=""
    zsysctl="zsysctl_$GOOSARCH.go"
    mksysnum=
    mktypes=
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 13 21:37:23 UTC 2023
    - 8.1K bytes
    - Viewed (0)
Back to top