From owner-cvs-src-old@FreeBSD.ORG Sat Mar 14 20:12:30 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6CAFE1065677 for ; Sat, 14 Mar 2009 20:12:30 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 597AC8FC24 for ; Sat, 14 Mar 2009 20:12:30 +0000 (UTC) (envelope-from das@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n2EKCUHx063940 for ; Sat, 14 Mar 2009 20:12:30 GMT (envelope-from das@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n2EKCU2J063939 for cvs-src-old@freebsd.org; Sat, 14 Mar 2009 20:12:30 GMT (envelope-from das@repoman.freebsd.org) Message-Id: <200903142012.n2EKCU2J063939@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to das@repoman.freebsd.org using -f From: David Schultz Date: Sat, 14 Mar 2009 20:10:14 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include pthread.h signal.h src/sys/sys _pthreadtypes.h X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Mar 2009 20:12:30 -0000 das 2009-03-14 20:10:14 UTC FreeBSD src repository Modified files: include pthread.h signal.h sys/sys _pthreadtypes.h Log: SVN rev 189828 on 2009-03-14 20:10:14Z by das Fix the visibility of several prototypes. Also move pthread_kill() and pthread_sigmask() to signal.h. In principle, this shouldn't break anything, since they're already in signal.h on other systems, and the FreeBSD manpage says that both pthread.h and signal.h need to be included to get these functions. Add a hack to declare pthread_t in the P1003.1-2008 namespace in signal.h. Revision Changes Path 1.44 +4 -2 src/include/pthread.h 1.28 +12 -1 src/include/signal.h 1.2 +3 -0 src/sys/sys/_pthreadtypes.h