Skip to content
Prev 41791 / 63421 Next

Moderating consequences of garbage collection when in C

On 11/14/2011 01:12 PM, dhinds at sonic.net wrote:
Generally complicated operations across multiple function calls. 
Something like

   f = function() {
     state <- gcdisable(TRUE)
     on.exit(gcdisable(state))
     as.character(1:10000000)
   }

might be used.

Martin