[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: GC thread performance
From: |
Stefan Israelsson Tampe |
Subject: |
Re: GC thread performance |
Date: |
Tue, 28 Nov 2017 00:05:16 +0100 |
There are lists of free memory kept in each thread so usually small allocation
is one multithreaded large allocation and then
a bunch of small allocation in thread consuming that large allocation. So for
small memory segments I would say that the
overhead probably is neglible.
On Mon, Nov 27, 2017 at 11:40 PM, Hans Åberg <address@hidden
<mailto:address@hidden>> wrote:
With the Boehm GC in Guile, does multithread allocations take longer time than
the same amount in a single thread?