Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 25 Oct 2013 13:25:49 +0000 (UTC)
From:      Tijl Coosemans <tijl@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r257112 - stable/9/include
Message-ID:  <201310251325.r9PDPnM2070555@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: tijl
Date: Fri Oct 25 13:25:49 2013
New Revision: 257112
URL: http://svnweb.freebsd.org/changeset/base/257112

Log:
  MFC r256925:
  
  Add a dummy statement to the beginning of the pthread_cleanup_pop() macro
  to allow a call of the macro to be labelled as in:
  
  label:
    pthread_cleanup_pop();
  
  Reviewed by:	imp

Modified:
  stable/9/include/pthread.h
Directory Properties:
  stable/9/include/   (props changed)

Modified: stable/9/include/pthread.h
==============================================================================
--- stable/9/include/pthread.h	Fri Oct 25 11:44:39 2013	(r257111)
+++ stable/9/include/pthread.h	Fri Oct 25 13:25:49 2013	(r257112)
@@ -175,6 +175,7 @@ int		pthread_barrierattr_setpshared(pthr
 			{
 
 #define		pthread_cleanup_pop(execute)					\
+				(void)0;					\
 			}							\
 			__pthread_cleanup_pop_imp(execute);			\
 		}



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