Skip to content

Commit b632b63

Browse files
am11lambdageek
andcommitted
Update src/native/minipal/thread.h
Co-authored-by: Aleksey Kliger (λgeek) <[email protected]>
1 parent fc8444f commit b632b63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/native/minipal/thread.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ static inline int minipal_set_thread_name(pthread_t thread, const char* name)
6767
return 0;
6868
#else
6969
#if defined(__APPLE__)
70-
// on macOS, pthread_setname_np only works for the calling thread.
70+
// on apple OSes, pthread_setname_np only works for the calling thread.
7171
if (thread != pthread_self()) return 0;
7272

7373
return pthread_setname_np(name);

0 commit comments

Comments
 (0)