threads
This commit is contained in:
parent
50e9839089
commit
02d6669a38
2 changed files with 8 additions and 1 deletions
|
|
@ -81,6 +81,11 @@ Error ThreadPosix::set_name(const String& p_name) {
|
|||
|
||||
ERR_FAIL_COND_V(pthread == 0, ERR_UNCONFIGURED);
|
||||
|
||||
#ifdef PTHREAD_NO_RENAME
|
||||
return ERR_UNAVAILABLE;
|
||||
|
||||
#else
|
||||
|
||||
#ifdef PTHREAD_RENAME_SELF
|
||||
|
||||
// check if thread is the same as caller
|
||||
|
|
@ -100,6 +105,8 @@ Error ThreadPosix::set_name(const String& p_name) {
|
|||
#endif
|
||||
|
||||
return err == 0 ? OK : ERR_INVALID_PARAMETER;
|
||||
|
||||
#endif // PTHREAD_NO_RENAME
|
||||
};
|
||||
|
||||
void ThreadPosix::make_default() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue