Quote:
Originally Posted by Executor
1. What does - Out of memory, too many mymalooks - or something like that mean?
|
"mymallocs" perhaps? Those of us who write C code often end up wrapping the standard "malloc" routine or writing our own, depending on our needs. Probably this is JK's custom version of malloc. malloc is used for memory allocation of data arrays and objects. (It probably stands for "
memory
allocator".)
Having too many mallocs means you're out of memory.