Closed
Bug 782521
Opened 12 years ago
Closed 12 years ago
pthread_setname_np's 3rd arg doesn't need const on NetBSD
Categories
(Core :: IPC, defect)
Tracking
()
RESOLVED
FIXED
mozilla17
People
(Reporter: jbeich, Assigned: jbeich)
References
Details
Attachments
(1 file)
(deleted),
patch
|
cjones
:
review+
|
Details | Diff | Splinter Review |
No description provided.
ipc/chromium/src/base/platform_thread_posix.cc:89:3: error:
no matching function for call to 'pthread_setname_np'
pthread_setname_np(pthread_self(), "%s", name);
^~~~~~~~~~~~~~~~~~
/usr/include/pthread.h:130:1: note:
candidate function not viable: no known conversion from 'const char *' to
'void *' for 3rd argument; take the address of the argument with &
pthread_setname_np(pthread_t thread, const char *name, void *arg);
^
1 error generated.
Attachment #651634 -
Flags: review?(jones.chris.g)
Updated•12 years ago
|
Attachment #651634 -
Flags: review?(jones.chris.g) → review+
Keywords: checkin-needed
Comment 2•12 years ago
|
||
Trivial, landing without Try results.
https://hg.mozilla.org/integration/mozilla-inbound/rev/8e656eb16307
Comment 3•12 years ago
|
||
Status: UNCONFIRMED → RESOLVED
Closed: 12 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla17
You need to log in
before you can comment on or make changes to this bug.
Description
•