mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 02:17:34 +00:00
Kernel: Return ENAMETOOLONG when trying to set a too-long thread name
This commit is contained in:
parent
1014aefe64
commit
e249d751c8
1 changed files with 1 additions and 1 deletions
|
@ -187,7 +187,7 @@ ErrorOr<FlatPtr> Process::sys$set_thread_name(pid_t tid, Userspace<char const*>
|
||||||
|
|
||||||
const size_t max_thread_name_size = 64;
|
const size_t max_thread_name_size = 64;
|
||||||
if (name->length() > max_thread_name_size)
|
if (name->length() > max_thread_name_size)
|
||||||
return EINVAL;
|
return ENAMETOOLONG;
|
||||||
|
|
||||||
auto thread = Thread::from_tid(tid);
|
auto thread = Thread::from_tid(tid);
|
||||||
if (!thread || thread->pid() != pid())
|
if (!thread || thread->pid() != pid())
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue