1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 15:17:46 +00:00

LibC: Remove the LibPthread interface target

This commit is contained in:
Tim Schumacher 2022-07-15 16:00:33 +02:00 committed by Linus Groh
parent 28061cf94d
commit 5870484d1a
6 changed files with 5 additions and 15 deletions

View file

@ -50,11 +50,3 @@ set(LIBTEST_BASED_SOURCES
foreach(libtest_source IN LISTS LIBTEST_BASED_SOURCES)
serenity_test("${libtest_source}" Kernel)
endforeach()
target_link_libraries(elf-execve-mmap-race LibPthread)
target_link_libraries(kill-pidtid-confusion LibPthread)
target_link_libraries(nanosleep-race-outbuf-munmap LibPthread)
target_link_libraries(null-deref-close-during-select LibPthread)
target_link_libraries(null-deref-crash-during-pthread_join LibPthread)
target_link_libraries(uaf-close-while-blocked-in-read LibPthread)
target_link_libraries(pthread-cond-timedwait-example LibPthread)

View file

@ -3,5 +3,5 @@ set(TEST_SOURCES
)
foreach(source IN LISTS TEST_SOURCES)
serenity_test("${source}" LibThreading LIBS LibThreading LibPthread)
serenity_test("${source}" LibThreading LIBS LibThreading)
endforeach()