Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 66 for extexit (0.12 sec)

  1. 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)
  2. 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)
  3. 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)
  4. docs/LICENSE

              the extent possible, the Licensor waives and/or agrees not to
              assert any such rights held by the Licensor to the limited
              extent necessary to allow You to exercise the Licensed
              Rights, but not otherwise.
    
           2. Patent and trademark rights are not licensed under this
              Public License.
    
           3. To the extent possible, the Licensor waives any right to
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 10 16:50:06 UTC 2021
    - 18.2K bytes
    - Viewed (0)
  5. licenses/github.com/hashicorp/hcl/LICENSE

       order, or regulation then You must: (a) comply with the terms of this License
       to the maximum extent possible; and (b) describe the limitations and the code
       they affect. Such description must be placed in a text file included with all
       distributions of the Covered Software under this License. Except to the
       extent prohibited by statute or regulation, such description must be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  6. licenses/github.com/hashicorp/errwrap/LICENSE

       order, or regulation then You must: (a) comply with the terms of this License
       to the maximum extent possible; and (b) describe the limitations and the code
       they affect. Such description must be placed in a text file included with all
       distributions of the Covered Software under this License. Except to the
       extent prohibited by statute or regulation, such description must be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Oct 26 02:47:39 UTC 2019
    - 15.6K bytes
    - Viewed (0)
  7. licenses/github.com/hashicorp/go-version/LICENSE

       order, or regulation then You must: (a) comply with the terms of this License
       to the maximum extent possible; and (b) describe the limitations and the code
       they affect. Such description must be placed in a text file included with all
       distributions of the Covered Software under this License. Except to the
       extent prohibited by statute or regulation, such description must be
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 15:59:40 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. licenses/github.com/hashicorp/golang-lru/v2/LICENSE

       judicial order, or regulation then You must: (a) comply with the terms of
       this License to the maximum extent possible; and (b) describe the
       limitations and the code they affect. Such description must be placed in a
       text file included with all distributions of the Covered Software under
       this License. Except to the extent prohibited by statute or regulation,
       such description must be sufficiently detailed for a recipient of ordinary
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 03 20:21:32 UTC 2023
    - 15.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/scope.go

    // Pos and End describe the scope's source code extent [pos, end).
    // The results are guaranteed to be valid only if the type-checked
    // AST has complete position information. The extent is undefined
    // for Universe and package scopes.
    func (s *Scope) Pos() syntax.Pos { return s.pos }
    func (s *Scope) End() syntax.Pos { return s.end }
    
    // Contains reports whether pos is within the scope's extent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. src/go/types/scope.go

    // Pos and End describe the scope's source code extent [pos, end).
    // The results are guaranteed to be valid only if the type-checked
    // AST has complete position information. The extent is undefined
    // for Universe and package scopes.
    func (s *Scope) Pos() token.Pos { return s.pos }
    func (s *Scope) End() token.Pos { return s.end }
    
    // Contains reports whether pos is within the scope's extent.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top