Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 13 Mar 1997 02:25:23 +1100
From:      Bruce Evans <bde@zeta.org.au>
To:        cvs-all@freefall.freebsd.org, CVS-committers@freefall.freebsd.org, cvs-lib@freefall.freebsd.org, mpp@freefall.freebsd.org
Subject:   Re: cvs commit:  src/lib/libc/sys execve.2 intro.2 sigaltstack.2
Message-ID:  <199703121525.CAA01593@godzilla.zeta.org.au>

next in thread | raw e-mail | index | archive | help
>  Modified:    lib/libc/sys  execve.2 intro.2 sigaltstack.2
>  Log:
>  Cleanup some of the Lite2 merge.  Most of it is mdoc cleanup,
>  but in one case the Lite2 changes were flat out wrong and
>  caused the man page to disagree with a header file.

Erm, the disagreement was because the header file (sys/signal.h) hasn't
been fully merged from Lite2 yet.  I have fixed it locally and was going
to commit the change tonight :-).  The man page still had the type wrong
in Lite2:

			header			man page
	FreeBSD-was:	char *ss_sp;		caddr_t ss_base;
	Lite2:		char *ss_base;		caddr_t ss_base;
	"right":	void *ss_base;		void *ss_base;

The pointer is a user address, so caddr_t is bogus.  I haven't changed
it to void * yet, so I'll delay the commit until it can be done right.

Bruce



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