K 10 svn:author V 3 phk K 8 svn:date V 27 2002-11-01T18:58:12.000000Z K 7 svn:log V 260 Introduce malloc_last_fail() which returns the number of seconds since malloc(9) failed last time. This is intended to help code adjust memory usage to the current circumstances. A typical use could be: if (malloc_last_fail() < 60) reduce_cache_by_one(); END