From owner-cvs-include Sun Jan 11 07:55:36 1998 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id HAA05188 for cvs-include-outgoing; Sun, 11 Jan 1998 07:55:36 -0800 (PST) (envelope-from owner-cvs-include) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.7/8.8.7) with ESMTP id HAA05101; Sun, 11 Jan 1998 07:55:02 -0800 (PST) (envelope-from alex@FreeBSD.org) From: Alex Nash Received: (from alex@localhost) by freefall.freebsd.org (8.8.6/8.8.5) id HAA16975; Sun, 11 Jan 1998 07:54:25 -0800 (PST) Date: Sun, 11 Jan 1998 07:54:25 -0800 (PST) Message-Id: <199801111554.HAA16975@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG Subject: cvs commit: src/include pthread.h Sender: owner-cvs-include@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk alex 1998/01/11 07:54:25 PST Modified files: (Branch: RELENG_2_2) include pthread.h Log: Update prototype for pthread_detach. Pointed out by: David E. Cross Revision Changes Path 1.2.2.3 +1 -1 src/include/pthread.h From owner-cvs-include Mon Jan 19 10:40:07 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id KAA03578 for cvs-include-outgoing; Mon, 19 Jan 1998 10:40:07 -0800 (PST) (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 KAA03449; Mon, 19 Jan 1998 10:38:38 -0800 (PST) (envelope-from wpaul@FreeBSD.org) From: Bill Paul Received: (from wpaul@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id JAA20231; Mon, 19 Jan 1998 09:19:11 -0800 (PST) Date: Mon, 19 Jan 1998 09:19:11 -0800 (PST) Message-Id: <199801191719.JAA20231@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG Subject: cvs commit: src/include/rpcsvc Makefile Sender: owner-cvs-include@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk wpaul 1998/01/19 09:19:10 PST Modified files: include/rpcsvc Makefile Log: Invoke rpcgen with -C so that headers are created with ANSI prototypes. Note: this may cause some problems in a few cases. With very old versions of rpcgen, if you defined a procedure called foo, then rpcen would create client stubs for function foo_1() and server stubs _also_ with function foo_1(). This only worked because of the lack of ANSI prototypes: the client side stub takes different arguments than the server side stub. (The client side takes a CLIENT * handle, while the server side wants an svc_req *.) To fix this conflict, rpcgen in ANSI mode generates foo_1() for the client and foo_1_svc() for the server. RPC server code that depends on the old behavior might break because of this. (Fixing it is just a matter of adding the _svc suffix onto the server procedure names.) Revision Changes Path 1.21 +2 -2 src/include/rpcsvc/Makefile From owner-cvs-include Tue Jan 20 01:10:52 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA18341 for cvs-include-outgoing; Tue, 20 Jan 1998 01:10:52 -0800 (PST) (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 BAA18278; Tue, 20 Jan 1998 01:10:21 -0800 (PST) (envelope-from jb@FreeBSD.org) From: John Birrell Received: (from jb@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id BAA00724; Tue, 20 Jan 1998 01:09:25 -0800 (PST) Date: Tue, 20 Jan 1998 01:09:25 -0800 (PST) Message-Id: <199801200909.BAA00724@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-include@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/include setjmp.h src/sys/i386/include setjmp.h src/sys/alpha/include setjmp.h Sender: owner-cvs-include@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk jb 1998/01/20 01:09:25 PST Modified files: include setjmp.h sys/i386/include setjmp.h sys/alpha/include setjmp.h Log: Suggested by: bde Move sigjmp_buf and jmp_buf structure definitions to machine/setjmp.h so that i386 can continue to use int as the basic register type and alpha can use long. Bruce was concerned about possible differing alignment. I've left the definition of _JBLEN in machine/setjmp.h even though Bruce's example used the number directly. I don't know if any other code relies on _JBLEN, so I left it to avoid potential breakage. Revision Changes Path 1.6 +0 -11 src/include/setjmp.h 1.2 +12 -1 src/sys/i386/include/setjmp.h 1.2 +12 -1 src/sys/alpha/include/setjmp.h