Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for setMarked (0.17 sec)

  1. src/runtime/mgcmark.go

    			gcDumpObject("obj", obj, ^uintptr(0))
    			getg().m.traceback = 2
    			throw("marking free object")
    		}
    
    		// If marked we have nothing to do.
    		if mbits.isMarked() {
    			return
    		}
    		mbits.setMarked()
    
    		// Mark span.
    		arena, pageIdx, pageMask := pageIndexOf(span.base())
    		if arena.pageMarks[pageIdx]&pageMask == 0 {
    			atomic.Or8(&arena.pageMarks[pageIdx], pageMask)
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mbitmap.go

    }
    
    // isMarked reports whether mark bit m is set.
    func (m markBits) isMarked() bool {
    	return *m.bytep&m.mask != 0
    }
    
    // setMarked sets the marked bit in the markbits, atomically.
    func (m markBits) setMarked() {
    	// Might be racing with other updates, so use atomic update always.
    	// We used to be clever here and use a non-atomic update in certain
    	// cases, but it's not worth the risk.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top