cstanhope@social.coop ("Your friendly 'net denizen") wrote:
I think this is the most relaxed "interview" I've ever seen David Byrne give. It's fun to hear his takes on some of the music:
https://www.youtube.com/watch?v=2MEjVfThmn4
(I admit I haven't seen every interview ever with him, but the interviews when he was younger gave off "I am uncomfortable" vibes. Kinda how I assume I would've been at those ages, actually.)


![screenshot of enterprise_malloc.c, a 30-line file with the following contents: #define _GNU_SOURCE #include <dlfcn.h> #include <pthread.h> #include <stdlib.h> #define FREE_DELAY 100000 static void *free_delay_queue[FREE_DELAY]; static int free_delay_pos; static void (*orig_free)(void *); static void *(*orig_malloc)(size_t); static pthread_mutex_t free_delay_mutex = PTHREAD_MUTEX_INITIALIZER; void free(void *ptr) { if (!ptr) return; pthread_mutex_lock(&free_delay_mutex); if (!orig_free) orig_free = dlsym(RTLD_NEXT, "free"); orig_free(free_delay_queue[free_delay_pos]); free_delay_queue[free_delay_pos] = ptr; free_delay_pos++; free_delay_pos %= FREE_DELAY; pthread_mutex_unlock(&free_delay_mutex); } void *malloc(size_t sz) { pthread_mutex_lock(&free_delay_mutex); if (!orig_malloc) orig_malloc = dlsym(RTLD_NEXT, "malloc"); pthread_mutex_unlock(&free_delay_mutex); return orig_malloc (sz * 2 + 0x100); }](https://files.mastodon.social/cache/media_attachments/files/115/236/814/526/492/589/original/7bd4ecaa2613437e.png)






