首页 > 其他 > 详细

oblet

时间:2020-11-02 11:51:11      阅读:25      评论:0      收藏:0      [点我收藏+]

 

oblet - The Go Programming Language https://golang.google.cn/search?q=oblet

// put enqueues a pointer for the garbage collector to trace.
   174  // obj must point to the beginning of a heap object or an oblet.

 

// maxObletBytes is the maximum bytes of an object to scan at
    25  	// once. Larger objects will be split up into "oblets" of at
    26  	// most this size. Since we can scan 1–2 MB/ms, 128 KB bounds
    27  	// scan preemption at ~100 μs.
    28  	//
    29  	// This must be > _MaxSmallSize so that the object base is the
    30  	// span base.
    31  	maxObletBytes = 128 << 10




// Oblets
   121  //
   122  // In order to prevent long pauses while scanning large objects and to
   123  // improve parallelism, the garbage collector breaks up scan jobs for
   124  // objects larger than maxObletBytes into "oblets" of at most
   125  // maxObletBytes. When scanning encounters the beginning of a large
   126  // object, it scans only the first oblet and enqueues the remaining
   127  // oblets as new scan jobs.

 

以let为后缀的单词 http://www.ee1234.com/let-houzhui.html

后缀-let = 小,微小,在…佩带的小饰物_英语词源字典 http://etymon.cn/yingyucizhui/yingyuhouzhui/42922.html

 

oblet

原文:https://www.cnblogs.com/rsapaper/p/13913229.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!