Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for MAP_STACK (0.1 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_386.go

    	MAP_HUGETLB                      = 0x40000
    	MAP_LOCKED                       = 0x2000
    	MAP_NONBLOCK                     = 0x10000
    	MAP_NORESERVE                    = 0x4000
    	MAP_POPULATE                     = 0x8000
    	MAP_STACK                        = 0x20000
    	MAP_SYNC                         = 0x80000
    	MCL_CURRENT                      = 0x1
    	MCL_FUTURE                       = 0x2
    	MCL_ONFAULT                      = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go

    	MAP_HUGETLB                      = 0x40000
    	MAP_LOCKED                       = 0x2000
    	MAP_NONBLOCK                     = 0x10000
    	MAP_NORESERVE                    = 0x4000
    	MAP_POPULATE                     = 0x8000
    	MAP_STACK                        = 0x20000
    	MAP_SYNC                         = 0x80000
    	MCL_CURRENT                      = 0x1
    	MCL_FUTURE                       = 0x2
    	MCL_ONFAULT                      = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go

    	MAP_HUGETLB                      = 0x40000
    	MAP_LOCKED                       = 0x2000
    	MAP_NONBLOCK                     = 0x10000
    	MAP_NORESERVE                    = 0x4000
    	MAP_POPULATE                     = 0x8000
    	MAP_STACK                        = 0x20000
    	MAP_SYNC                         = 0x80000
    	MCL_CURRENT                      = 0x1
    	MCL_FUTURE                       = 0x2
    	MCL_ONFAULT                      = 0x4
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  4. src/runtime/mheap.go

    	// must also evenly divide pagesPerArena.
    	pagesPerReclaimerChunk = 512
    
    	// physPageAlignedStacks indicates whether stack allocations must be
    	// physical page aligned. This is a requirement for MAP_STACK on
    	// OpenBSD.
    	physPageAlignedStacks = GOOS == "openbsd"
    )
    
    // Main malloc heap.
    // The heap itself is the "free" and "scav" treaps,
    // but all the other global data is here too.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
Back to top