Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

src: add uv_thread_set/getname() methods #4599

Merged
merged 1 commit into from
Nov 27, 2024

Conversation

santigimeno
Copy link
Member

@santigimeno santigimeno commented Nov 4, 2024

uv_thread_setname() sets the name of the current thread. Different
platforms define different limits on the max number of characters
a thread name can be: Linux, IBMi (16), macOS (64), Windows (32767),
and NetBSD (32), etc. uv_thread_setname() will truncate it in case
name is larger than the limit of the platform.

uv_thread_getname() gets the name of the thread specified by tid.
The thread name is copied into the buffer pointed to by name. The
size parameter specifies the size of the buffer pointed to by name.
The buffer should be large enough to hold the name of the thread plus
the trailing NUL, or it will be truncated to fit.

@santigimeno
Copy link
Member Author

Unfortunately, I couldn't find a better common denominator hence the API differences. Suggestions to improve it are welcome.

@santigimeno santigimeno force-pushed the santi/thread_set_name branch 2 times, most recently from 01e6156 to 763c272 Compare November 5, 2024 17:09
@santigimeno santigimeno force-pushed the santi/thread_set_name branch from 484a9ff to f5a2c08 Compare November 22, 2024 16:20
@santigimeno
Copy link
Member Author

I think this is ready now. PTAL. Thanks

@santigimeno santigimeno force-pushed the santi/thread_set_name branch from f5a2c08 to 28b8f35 Compare November 24, 2024 10:05
@santigimeno
Copy link
Member Author

I think I have addressed all the comments plus a fix on Windows (I forgot a call to LocalFree()).

@santigimeno santigimeno force-pushed the santi/thread_set_name branch from 36c1a16 to 1111453 Compare November 24, 2024 17:14
Copy link
Member

@bnoordhuis bnoordhuis left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM as in "technically okay" (sans Android build error) but see my comment about legibility.

@richardlau
Copy link
Contributor

This fails to link on AIX/IBM i: https://ci.nodejs.org/view/libuv/job/libuv-test-commit/2296/

It's not immediately obvious to me why -- pthread_getname_np/pthread_setname_np would seem to exist (at least on IBM i). cc @libuv/aix @libuv/ibmi

@kadler
Copy link
Member

kadler commented Nov 25, 2024

This fails to link on AIX/IBM i: https://ci.nodejs.org/view/libuv/job/libuv-test-commit/2296/

It's not immediately obvious to me why -- pthread_getname_np/pthread_setname_np would seem to exist (at least on IBM i). cc @libuv/aix @libuv/ibmi

Those are ILE APIs which is a different environment from where libuv runs (PASE). There's no such functions in AIX and consequently no such functions in PASE. There is an open idea to provide a wrapper in PASE for the ILE APIs since it's not really possible to convert from a PASE pthread_t to an ILE pthread_t from user space, but not implemented yet.

For now, these will have to be ifdef'd on AIX and IBM i to return UV_ENOSYS.

@santigimeno
Copy link
Member Author

For now, these will have to be ifdef'd on AIX and IBM i to return UV_ENOSYS.

What's the macro to check for IBM i: __MVS__ and / or __PASE__ ?

@santigimeno santigimeno force-pushed the santi/thread_set_name branch from 1111453 to 3a496a1 Compare November 26, 2024 09:08
@richardlau
Copy link
Contributor

For now, these will have to be ifdef'd on AIX and IBM i to return UV_ENOSYS.

What's the macro to check for IBM i: __MVS__ and / or __PASE__ ?

IBM i is __PASE__.

FWIW __MVS__ is z/OS -- we currently don't have those in the CI at the moment (there is an intent to get new machines added but no timeframe right now). I think for now on z/OS you can also return UV_ENOSYS (cc @libuv/zos).

Copy link
Contributor

@cjihrig cjihrig left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM once the CI is passing.

@kadler
Copy link
Member

kadler commented Nov 26, 2024

What's the macro to check for IBM i: __MVS__ and / or __PASE__ ?

As Richard said, IBM i is __PASE__, but also defines _AIX which covers AIX as well.

`uv_thread_setname()` sets the name of the current thread. Different
platforms define different limits on the max number of characters
a thread name can be: Linux, IBMi (16), macOS (64), Windows (32767),
and NetBSD (32), etc. `uv_thread_setname()` will truncate it in case
`name` is larger than the limit of the platform.

`uv_thread_getname()` gets the name of the thread specified by `tid`.
The thread name is copied into the buffer pointed to by `name`. The
`size` parameter specifies the size of the buffer pointed to by `name`.
The buffer should be large enough to hold the name of the thread plus
the trailing NUL, or it will be truncated to fit.
@santigimeno santigimeno force-pushed the santi/thread_set_name branch from 8703039 to 37bb3c2 Compare November 27, 2024 08:51
@santigimeno
Copy link
Member Author

santigimeno commented Nov 27, 2024

Landing this. The qemu failures are due to the Install QEMU step failing but previous builds before squashing were green. Also the failures in https://ci.nodejs.org/view/libuv/job/libuv-test-commit/2298/ are unrelated. Thanks everyone for the reviews.

@santigimeno santigimeno merged commit 61c966c into libuv:v1.x Nov 27, 2024
24 of 40 checks passed
@santigimeno santigimeno deleted the santi/thread_set_name branch November 27, 2024 11:52
RafaelGSS added a commit to RafaelGSS/node that referenced this pull request Dec 30, 2024
RafaelGSS added a commit to RafaelGSS/node that referenced this pull request Dec 30, 2024
RafaelGSS added a commit to RafaelGSS/node that referenced this pull request Dec 30, 2024
RafaelGSS added a commit to RafaelGSS/node that referenced this pull request Dec 30, 2024
RafaelGSS added a commit to RafaelGSS/node that referenced this pull request Dec 30, 2024
abmusse added a commit to abmusse/libuv that referenced this pull request Mar 3, 2025
uv_thread_getname is not available on aix and ibm i
Same issue as thread_name test

see: libuv#4599 (comment)
cjihrig pushed a commit that referenced this pull request Mar 3, 2025
uv_thread_getname is not available on aix and ibm i
Same issue as thread_name test
Refs: #4599 (comment)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants