mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 14:35:07 +00:00
LibCore: Only build CThread on Serenity platforms.
This commit is contained in:
parent
6a5446d6dd
commit
e940d4b07b
2 changed files with 9 additions and 0 deletions
|
@ -1,3 +1,5 @@
|
|||
#ifdef __serenity__
|
||||
|
||||
#include <AK/Assertions.h>
|
||||
#include <LibCore/CEventLoop.h>
|
||||
#include <LibCore/CThread.h>
|
||||
|
@ -27,3 +29,5 @@ CThread::CThread(int (*entry)(void*), void* user_data)
|
|||
CThread::~CThread()
|
||||
{
|
||||
}
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue