Re: [PATCH v3 0/6] remove check around pthread_mutex_init()

2025-01-14 Thread Ariel Otilibili-Anieli
Hi Stephen, On Monday, January 13, 2025 20:11 CET, Stephen Hemminger wrote: > On Sun, 12 Jan 2025 21:20:15 +0100 > Ariel Otilibili wrote: > > > > LGTM > Series-Acked-by: Stephen Hemminger Thanks for having looked into the series. Herewith a new version, I addressed your feedback, https://

Re: [PATCH v3 0/6] remove check around pthread_mutex_init()

2025-01-13 Thread Stephen Hemminger
On Sun, 12 Jan 2025 21:20:15 +0100 Ariel Otilibili wrote: > Hello, > > This series addresses Bugzilla ID 1586; the man says > > > pthread_mutex_init always returns 0. The other mutex functions > > return 0 on success and a non-zero error code on error. > > Meaning, the check around around pt

[PATCH v3 0/6] remove check around pthread_mutex_init()

2025-01-12 Thread Ariel Otilibili
Hello, This series addresses Bugzilla ID 1586; the man says > pthread_mutex_init always returns 0. The other mutex functions > return 0 on success and a non-zero error code on error. Meaning, the check around around pthread_mutex_init() is needless. Thank you, Link: https://man7.org/linux/man-