mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-24 11:11:51 +00:00
LibPThread: Make pthread_exit a noreturn function
LibPThread: mark pthread_exit a noreturn function using compiler attributes LibThread: remove a call to pthread_exit from Thread::start lambda expression as it make the return of teh lambda unreachable.
This commit is contained in:
parent
19d6884529
commit
f2d3cc7325
Notes:
sideshowbarker
2024-07-19 04:42:08 +09:00
Author: https://github.com/tryfinally 🔰
Commit: f2d3cc7325
Pull-request: https://github.com/SerenityOS/serenity/pull/2834
Reviewed-by: https://github.com/bugaevc
3 changed files with 3 additions and 3 deletions
|
@ -51,8 +51,7 @@ void LibThread::Thread::start()
|
|||
[](void* arg) -> void* {
|
||||
Thread* self = static_cast<Thread*>(arg);
|
||||
size_t exit_code = self->m_action();
|
||||
self->m_tid = 0;
|
||||
pthread_exit((void*)exit_code);
|
||||
self->m_tid = 0;
|
||||
return (void*)exit_code;
|
||||
},
|
||||
static_cast<void*>(this));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue