1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 09:47:35 +00:00

test-pthread: Port to LibMain and let local functions return ErrorOr<T>

This ports 'test-pthread' to LibMain and converts the local functions of
the program to return ErrorOr<T>.
This commit is contained in:
Kenneth Myhra 2022-03-29 11:48:03 +02:00 committed by Brian Gianforcaro
parent d69f3aa958
commit f4aef35e6e
2 changed files with 35 additions and 24 deletions

View file

@ -199,7 +199,7 @@ target_link_libraries(telws LibProtocol LibLine LibMain)
target_link_libraries(test-bindtodevice LibMain)
target_link_libraries(test-fuzz LibCore LibGemini LibGfx LibHTTP LibIPC LibJS LibMarkdown LibShell LibMain)
target_link_libraries(test-imap LibIMAP LibMain)
target_link_libraries(test-pthread LibThreading)
target_link_libraries(test-pthread LibThreading LibMain)
target_link_libraries(timezone LibMain)
target_link_libraries(top LibMain)
target_link_libraries(touch LibMain)