Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 15 Jan 2015 00:28:39 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-standards@FreeBSD.org
Subject:   [Bug 191906] pthread_cancel(NULL) on FreeBSD returns EINVAL, not ESRCH according to manpage
Message-ID:  <bug-191906-15-hlRybScfS9@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-191906-15@https.bugs.freebsd.org/bugzilla/>
References:  <bug-191906-15@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=191906

--- Comment #3 from Garrett Cooper,425-314-3911 <ngie@FreeBSD.org> ---
NetBSD's testing implementation specific behavior:

 75 static int
 76 join_common(pthread_t pthread, void **thread_return,
 77         const struct timespec *abstime)
 78 {
 79         struct pthread *curthread = _get_curthread();
 80         struct timespec ts, ts2, *tsp;
 81         void *tmp;
 82         long tid;
 83         int ret = 0;
 84 
 85         if (pthread == NULL)
 86                 return (EINVAL);
 87

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-191906-15-hlRybScfS9>