Sean Kelly wrote:
> 
> I think it would be trivial to enable this feature.  Try adding these 
> lines to the top of internal/gc/gcx.d - fullcollectshell():
> 
>     if (gcx.disabled > 0)
>         return 0;
Correction, the above should be:
      if (disabled > 0)
          return 0;
I forgot this code is in the Gcx struct.
Sean