Fixed
Status Update
Comments
en...@google.com <en...@google.com> #2
The G-suite documentation[1] provides this information, but I have submitted a feature request to make it clear on the Cloud DNS public documentation and the Cloud Console. However, I can't provide you with an ETA or guarantee the implementation of this feature, but rest assured that Google strives on improving its products and that your feedback helps us do just that.
Any future updates to this feature will be posted here.
[1]https://support.google.com/a/answer/173535
Any future updates to this feature will be posted here.
[1]
Description
int timer_create(clockid_t clock_id, sigevent* evp, timer_t* timer_id) {
...
char name[32];
snprintf(name, sizeof(name), "POSIX interval timer %d", to_kernel_timer_id(timer));
pthread_setname_np(timer->callback_thread, name);
The problem is that pthread_setname_np() returns ERANGE if the name is longer than 16 chars (including the NULL terminator) and the string that is constructed here is always longer than that. So these threads never have a useful thread name.