Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Jul 2017 04:34:22 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-releng@freebsd.org
Subject:   svn commit: r320825 - releng/11.1/lib/libc/gen
Message-ID:  <201707090434.v694YMuq087569@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sun Jul  9 04:34:22 2017
New Revision: 320825
URL: https://svnweb.freebsd.org/changeset/base/320825

Log:
  MFC r320570 MFS r320822:
  Correct signatures of several pthreads stubs.
  
  Approved by:	re (gjb)

Modified:
  releng/11.1/lib/libc/gen/_pthread_stubs.c
Directory Properties:
  releng/11.1/   (props changed)

Modified: releng/11.1/lib/libc/gen/_pthread_stubs.c
==============================================================================
--- releng/11.1/lib/libc/gen/_pthread_stubs.c	Sun Jul  9 04:13:33 2017	(r320824)
+++ releng/11.1/lib/libc/gen/_pthread_stubs.c	Sun Jul  9 04:34:22 2017	(r320825)
@@ -279,10 +279,11 @@ STUB_FUNC2(pthread_kill, PJT_KILL, int, void *, int)
 STUB_FUNC2(pthread_setcancelstate, PJT_SETCANCELSTATE, int, int, void *)
 STUB_FUNC2(pthread_setcanceltype, PJT_SETCANCELTYPE, int, int, void *)
 STUB_FUNC(pthread_testcancel, PJT_TESTCANCEL, void)
-STUB_FUNC1(__pthread_cleanup_pop_imp, PJT_CLEANUP_POP_IMP, int, int)
-STUB_FUNC2(__pthread_cleanup_push_imp, PJT_CLEANUP_PUSH_IMP, void, void*, void *);
-STUB_FUNC1(_pthread_cancel_enter, PJT_CANCEL_ENTER, int, int)
-STUB_FUNC1(_pthread_cancel_leave, PJT_CANCEL_LEAVE, int, int)
+STUB_FUNC1(__pthread_cleanup_pop_imp, PJT_CLEANUP_POP_IMP, void, int)
+STUB_FUNC3(__pthread_cleanup_push_imp, PJT_CLEANUP_PUSH_IMP, void, void *,
+    void *, void *);
+STUB_FUNC1(_pthread_cancel_enter, PJT_CANCEL_ENTER, void, int)
+STUB_FUNC1(_pthread_cancel_leave, PJT_CANCEL_LEAVE, void, int)
 
 static int
 stub_zero(void)



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201707090434.v694YMuq087569>