00:37:42 hrm.. today with libumem you can define an 'out of memory' callback, which can either return a status to retry or a 0-255 exit value 00:38:04 would it be reasonable to add an option to do something like call upanic(2) ? 00:38:38 (it looks like from how it's defined it would be pretty straightforward, and shouldn't break anything exiting) 01:06:59 jbk: as in, UMEM_CALLBACK_PANIC basically? 01:07:49 as a return from the callback you pass to umem_nofail_callback(3MALLOC)? 01:08:31 yeah.. 01:08:50 (I didn't see one unless I really missed it) 01:11:23 if you look at the definition of UMEM_CALLBACK_EXIT(status).. it's just 0x100 | (status & 0xff) .. so could (for example) maybe define UMEM_CALLBACK_PANIC as 0x200 or such 01:11:34 (just thinking out loud) 01:13:59 (could even provide a default implementation if someone didn't want to do anything else)..