From owner-cvs-include Fri Apr 10 19:51:20 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id TAA22472 for cvs-include-outgoing; Fri, 10 Apr 1998 19:51:20 -0700 (PDT) (envelope-from owner-cvs-include) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id TAA22380; Fri, 10 Apr 1998 19:51:12 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id TAA29194; Fri, 10 Apr 1998 19:51:01 -0700 (PDT) Date: Fri, 10 Apr 1998 19:51:01 -0700 (PDT) Message-Id: <199804110251.TAA29194@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG Subject: cvs commit: src/include pthread_np.h Sender: owner-cvs-include@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jb 1998/04/10 19:51:00 PDT Modified files: include pthread_np.h Log: Add a function prototype to set the name of a thread for debugging purposes. Revision Changes Path 1.5 +2 -1 src/include/pthread_np.h From owner-cvs-include Sat Apr 11 00:34:11 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA28922 for cvs-include-outgoing; Sat, 11 Apr 1998 00:34:11 -0700 (PDT) (envelope-from owner-cvs-include) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA28831; Sat, 11 Apr 1998 00:34:00 -0700 (PDT) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id AAA00204; Sat, 11 Apr 1998 00:33:47 -0700 (PDT) Date: Sat, 11 Apr 1998 00:33:47 -0700 (PDT) Message-Id: <199804110733.AAA00204@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG Subject: cvs commit: src/include stdio.h Sender: owner-cvs-include@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jb 1998/04/11 00:33:47 PDT Modified files: include stdio.h Log: Add *_unlocked() macros according to POSIX. In the _THREAD_SAFE case, test for __isthreaded before calling the lock/unlock functions to try to save some performance. The _THREAD_SAFE case should become the default, but since it tests for a global variable in libc, people won't be able to build -current on pre-3.0 systems unless the default leaves it out. Such is life. Revision Changes Path 1.15 +59 -9 src/include/stdio.h