mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 04:39:06 +00:00
To prevent deadlocks when both IPC peers are trying to send to each other but both sides have too much in their buffer already, we now move the send operation to a secondary thread where it can block until the peer is able to handle it.
9 lines
173 B
CMake
9 lines
173 B
CMake
set(SOURCES
|
|
Connection.cpp
|
|
Decoder.cpp
|
|
Encoder.cpp
|
|
Message.cpp
|
|
)
|
|
|
|
serenity_lib(LibIPC ipc)
|
|
target_link_libraries(LibIPC PRIVATE LibCore LibURL LibThreading)
|