ladybird/Libraries/LibIPC
Andreas Kling ef658594e4 LibIPC: Let's start building custom message codecs for LibIPC
Instead of using ByteBuffer (which always malloc() their storage) for
IPC message encoding, we now use a Vector<u8, 1024>, which means that
messages smaller than 1 KB avoid heap allocation entirely.
2019-12-30 02:41:45 +01:00
..
IClientConnection.h LibIPC: Get client/server PIDs using getsockopt(SO_PEERCRED) 2019-12-06 18:39:59 +01:00
IEncoder.h LibIPC: Let's start building custom message codecs for LibIPC 2019-12-30 02:41:45 +01:00
IEndpoint.cpp LibIPC: Start fleshing out a separate IPC library 2019-08-03 15:29:40 +02:00
IEndpoint.h LibIPC+AudioServer: Allow unsolicited server-to-client IPC messages 2019-11-23 16:50:21 +01:00
IMessage.cpp LibIPC: Start fleshing out a separate IPC library 2019-08-03 15:29:40 +02:00
IMessage.h LibIPC: Let's start building custom message codecs for LibIPC 2019-12-30 02:41:45 +01:00
IServerConnection.h LibIPC: Make sure we always process unhandled messages 2019-12-16 17:45:57 +01:00
Makefile Build: clean up build system, use one shared Makefile 2019-12-20 20:20:54 +01:00