You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently create a packet SweepVMSpecific that sweeps malloc'd arrays, stack pools, and weak references for all the threads, and the packet was put to the Compact bucket.
We should break down the work packet into smaller packets, SweepMallocedArrays, SweepStackPools and SweepWeakReferences for each thread. And we should schedule the packets to the Release bucket.
The text was updated successfully, but these errors were encountered:
We currently create a packet
SweepVMSpecific
that sweeps malloc'd arrays, stack pools, and weak references for all the threads, and the packet was put to theCompact
bucket.We should break down the work packet into smaller packets,
SweepMallocedArrays
,SweepStackPools
andSweepWeakReferences
for each thread. And we should schedule the packets to theRelease
bucket.The text was updated successfully, but these errors were encountered: