Closed
Bug 1541216
Opened 2 years ago
Closed 2 years ago
PR_SetCurrentThreadName() Fails to set the thread name on Android.
Categories
(NSPR :: NSPR, defect, P2)
NSPR
NSPR
Tracking
(Not tracked)
RESOLVED
FIXED
4.22
People
(Reporter: rbarker, Assigned: rbarker)
References
Details
Attachments
(1 file)
On android *(void**)(&dynamic_pthread_setname_np) = dlsym(RTLD_DEFAULT, "pthread_setname_np");
fails so the thread name is never set. Investigating, I found that WebRTC uses prctl(PR_SET_NAME, name);
and SpiderMonkey just calls pthread_setname_np(pthread_self(), name);
directly.
Assignee | ||
Comment 1•2 years ago
|
||
Updated•2 years ago
|
Assignee: nobody → rbarker
Status: NEW → ASSIGNED
Priority: -- → P2
Comment 2•2 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 2 years ago
Resolution: --- → FIXED
Target Milestone: --- → 4.22
Comment 3•2 years ago
|
||
Backed out for landing (via Lando) on the wrong branch.
https://hg.mozilla.org/projects/nspr/rev/bca82e260d71437fb6f74e1dd2fcdecbffda20d4
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
Target Milestone: 4.22 → ---
Comment 4•2 years ago
|
||
Status: REOPENED → RESOLVED
Closed: 2 years ago → 2 years ago
Resolution: --- → FIXED
Target Milestone: --- → 4.22
You need to log in
before you can comment on or make changes to this bug.
Description
•