Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 208 for extexit (0.29 sec)

  1. src/runtime/sys_dragonfly_amd64.s

    	MOVQ	wait+0(FP), AX
    	// We're done using the stack.
    	MOVL	$0, (AX)
    	MOVL	$0x10000, DI	// arg 1 how - EXTEXIT_LWP
    	MOVL	$0, SI		// arg 2 status
    	MOVL	$0, DX		// arg 3 addr
    	MOVL	$494, AX	// extexit
    	SYSCALL
    	MOVL	$0xf1, 0xf1  // crash
    	JMP	0(PC)
    
    TEXT runtimeĀ·open(SB),NOSPLIT,$-8
    	MOVQ	name+0(FP), DI		// arg 1 pathname
    	MOVL	mode+8(FP), SI		// arg 2 flags
    	MOVL	perm+12(FP), DX		// arg 3 mode
    	MOVL	$5, AX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. src/syscall/zsysnum_dragonfly_amd64.go

    	SYS_VMSPACE_PREAD          = 492 // { ssize_t vmspace_pread(void *id, void *buf, \
    	SYS_VMSPACE_PWRITE         = 493 // { ssize_t vmspace_pwrite(void *id, const void *buf, \
    	SYS_EXTEXIT                = 494 // { void extexit(int how, int status, void *addr); }
    	SYS_LWP_CREATE             = 495 // { int lwp_create(struct lwp_params *params); }
    	SYS_LWP_GETTID             = 496 // { lwpid_t lwp_gettid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 22.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go

    	SYS_VMSPACE_PWRITE         = 493 // { ssize_t vmspace_pwrite(void *id, const void *buf, size_t nbyte, int flags, off_t offset); }
    	SYS_EXTEXIT                = 494 // { void extexit(int how, int status, void *addr); }
    	SYS_LWP_CREATE             = 495 // { int lwp_create(struct lwp_params *params); }
    	SYS_LWP_GETTID             = 496 // { lwpid_t lwp_gettid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 27.6K bytes
    - Viewed (0)
  4. src/cmd/dist/util.go

    	bghelpers.Wait()
    
    	xexit(2)
    }
    
    var atexits []func()
    
    // xexit exits the process with return code n.
    func xexit(n int) {
    	for i := len(atexits) - 1; i >= 0; i-- {
    		atexits[i]()
    	}
    	os.Exit(n)
    }
    
    // xatexit schedules the exit-handler f to be run when the program exits.
    func xatexit(f func()) {
    	atexits = append(atexits, f)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 17:50:29 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/tools/go/analysis/diagnostic.go

    	// whether to accept it.
    	Message   string
    	TextEdits []TextEdit
    }
    
    // A TextEdit represents the replacement of the code between Pos and End with the new text.
    // Each TextEdit should apply to a single file. End should not be earlier in the file than Pos.
    type TextEdit struct {
    	// For a pure insertion, End can either be set to Pos or token.NoPos.
    	Pos     token.Pos
    	End     token.Pos
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. hack/lib/logging.sh

    # Handler for when we exit automatically on an error.
    # Borrowed from https://gist.github.com/ahendrix/7030300
    kube::log::errexit() {
      local err="${PIPESTATUS[*]}"
    
      # If the shell we are in doesn't have errexit set (common in subshells) then
      # don't dump stacks.
      set +o | grep -qe "-o errexit" || return
    
      set +o xtrace
      local code="${1:-1}"
      # Print out the stack trace described by $function_stack
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/util/error.go

    	ValidationExitCode = 3
    )
    
    var (
    	// ErrInvalidSubCommandMsg is an error message returned on invalid subcommands
    	ErrInvalidSubCommandMsg = "invalid subcommand"
    	// ErrExit is an error returned when kubeadm is about to exit
    	ErrExit = errors.New("exit")
    )
    
    // fatal prints the message if set and then exits.
    func fatal(msg string, code int) {
    	if len(msg) > 0 {
    		// add newline if needed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  8. src/runtime/plugin.go

    		}
    
    		if inRange(pmd.text, pmd.etext, md.text, md.etext) ||
    			inRange(pmd.bss, pmd.ebss, md.bss, md.ebss) ||
    			inRange(pmd.data, pmd.edata, md.data, md.edata) ||
    			inRange(pmd.types, pmd.etypes, md.types, md.etypes) {
    			println("plugin: new module data overlaps with previous moduledata")
    			println("\tpmd.text-etext=", hex(pmd.text), "-", hex(pmd.etext))
    			println("\tpmd.bss-ebss=", hex(pmd.bss), "-", hex(pmd.ebss))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 15:10:48 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. hack/make-rules/vet.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
    
    # Ignore the usual golangci.yaml config because it would
    # enable additional linters, then enable just "go vet".
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 03 06:51:04 UTC 2023
    - 906 bytes
    - Viewed (0)
  10. hack/verify-internal-modules.sh

    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/verify-generated.sh"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 22 18:39:23 UTC 2023
    - 853 bytes
    - Viewed (0)
Back to top