Re: svn commit: r361770 - in head: include lib/libthr lib/libthr/thread share/man/man3

2020-06-04 Thread Konstantin Belousov
On Thu, Jun 04, 2020 at 07:51:42AM +0200, Antoine Brodin wrote: > On Thu, Jun 4, 2020 at 4:30 AM Jung-uk Kim wrote: > > > > It broke Firefox build and I found Linux pthread_{get,set}name_np(3) > > returns int. > > > > https://linux.die.net/man/3/pthread_getname_np > > > > I guess you need to

Re: svn commit: r361770 - in head: include lib/libthr lib/libthr/thread share/man/man3

2020-06-03 Thread Antoine Brodin
On Thu, Jun 4, 2020 at 4:30 AM Jung-uk Kim wrote: > > On 20. 6. 3., Konstantin Belousov wrote: > > Author: kib > > Date: Wed Jun 3 20:54:36 2020 > > New Revision: 361770 > > URL: https://svnweb.freebsd.org/changeset/base/361770 > > > > Log: > > Add pthread_getname_np() and pthread_setname_np()

Re: svn commit: r361770 - in head: include lib/libthr lib/libthr/thread share/man/man3

2020-06-03 Thread Jung-uk Kim
On 20. 6. 3., Konstantin Belousov wrote: > Author: kib > Date: Wed Jun 3 20:54:36 2020 > New Revision: 361770 > URL: https://svnweb.freebsd.org/changeset/base/361770 > > Log: > Add pthread_getname_np() and pthread_setname_np() aliases > > for pthread_get_name_np() and

svn commit: r361770 - in head: include lib/libthr lib/libthr/thread share/man/man3

2020-06-03 Thread Konstantin Belousov
Author: kib Date: Wed Jun 3 20:54:36 2020 New Revision: 361770 URL: https://svnweb.freebsd.org/changeset/base/361770 Log: Add pthread_getname_np() and pthread_setname_np() aliases for pthread_get_name_np() and pthread_set_name_np(), to be compatible with Linux. PR: 238404