Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for progedit (0.11 sec)

  1. src/cmd/internal/obj/pass.go

    	for p := sym.Func().Text; p != nil; p = p.Link {
    		checkaddr(ctxt, p, &p.From)
    		for _, v := range p.RestArgs {
    			checkaddr(ctxt, p, &v.Addr)
    		}
    		checkaddr(ctxt, p, &p.To)
    
    		if ctxt.Arch.Progedit != nil {
    			ctxt.Arch.Progedit(ctxt, p, newprog)
    		}
    		if p.To.Type != TYPE_BRANCH {
    			continue
    		}
    		if p.To.Val != nil {
    			continue
    		}
    
    		if p.To.Sym != nil {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 01:26:58 UTC 2023
    - 5K bytes
    - Viewed (0)
  2. src/syscall/os_wasip1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package syscall
    
    //go:wasmimport wasi_snapshot_preview1 proc_exit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 20:58:35 UTC 2023
    - 252 bytes
    - Viewed (0)
  3. src/syscall/syscall_wasip1.go

    	//
    	// Any signal that the application raises to the process itself will
    	// be interpreted as being cause for termination.
    	if pid > 0 && pid != Getpid() {
    		return ESRCH
    	}
    	ProcExit(128 + int32(signum))
    	return nil
    }
    
    func Sendfile(outfd int, infd int, offset *int64, count int) (written int, err error) {
    	return 0, ENOSYS
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:03:59 UTC 2024
    - 9.4K bytes
    - Viewed (0)
Back to top