Running an asyncio.sleep task causes the following files to be present in /proc/*/fd:
lrwx------ 1 mango mango 64 27. Dez 12:40 3 -> 'anon_inode:[eventpoll]'
lrwx------ 1 mango mango 64 27. Dez 12:40 4 -> 'socket:[330143]'
lrwx------ 1 mango mango 64 27. Dez 12:40 5 -> 'socket:[330144]'
What does this stuff do for asyncio?
I had a problem with multiprocessing that was solved by creating a new event loop in the new process, so I assume there is some link between the processes. Either a pipe (which I think is also a file?) or this stuff.