Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 May 2012 15:00:15 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-sparc64@FreeBSD.org
Subject:   Re: sparc64/165025: commit references a PR
Message-ID:  <201205251500.q4PF0FWV084205@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR sparc64/165025; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: sparc64/165025: commit references a PR
Date: Fri, 25 May 2012 14:54:43 +0000 (UTC)

 Author: marius
 Date: Fri May 25 14:54:18 2012
 New Revision: 235996
 URL: http://svn.freebsd.org/changeset/base/235996
 
 Log:
   MFC: r234789
   
   Add multiple inclusion protection.
   
   PR:		165025
   Submitted by:	Gavin Mu
 
 Modified:
   stable/8/sys/boot/common/bootstrap.h
 Directory Properties:
   stable/8/sys/   (props changed)
   stable/8/sys/amd64/include/xen/   (props changed)
   stable/8/sys/boot/   (props changed)
   stable/8/sys/cddl/contrib/opensolaris/   (props changed)
   stable/8/sys/contrib/dev/acpica/   (props changed)
   stable/8/sys/contrib/pf/   (props changed)
   stable/8/sys/dev/e1000/   (props changed)
 
 Modified: stable/8/sys/boot/common/bootstrap.h
 ==============================================================================
 --- stable/8/sys/boot/common/bootstrap.h	Fri May 25 14:54:12 2012	(r235995)
 +++ stable/8/sys/boot/common/bootstrap.h	Fri May 25 14:54:18 2012	(r235996)
 @@ -26,6 +26,9 @@
   * $FreeBSD$
   */
  
 +#ifndef _BOOTSTRAP_H_
 +#define	_BOOTSTRAP_H_
 +
  #include <sys/types.h>
  #include <sys/queue.h>
  #include <sys/linker_set.h>
 @@ -307,3 +310,5 @@ void	delay(int delay);
  void	dev_cleanup(void);
  
  time_t	time(time_t *tloc);
 +
 +#endif /* !_BOOTSTRAP_H_ */
 _______________________________________________
 svn-src-all@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



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