svn commit: branches/uClibc-nptl/libpthread/nptl/sysdeps/generic

carmelo at uclibc.org carmelo at uclibc.org
Mon Jan 21 13:46:03 UTC 2008


Author: carmelo
Date: 2008-01-21 05:46:01 -0800 (Mon, 21 Jan 2008)
New Revision: 20883

Log:
Revert latest commit because it brakes sh4 build

Modified:
   branches/uClibc-nptl/libpthread/nptl/sysdeps/generic/sysdep.h


Changeset:
Modified: branches/uClibc-nptl/libpthread/nptl/sysdeps/generic/sysdep.h
===================================================================
--- branches/uClibc-nptl/libpthread/nptl/sysdeps/generic/sysdep.h	2008-01-21 11:07:57 UTC (rev 20882)
+++ branches/uClibc-nptl/libpthread/nptl/sysdeps/generic/sysdep.h	2008-01-21 13:46:01 UTC (rev 20883)
@@ -17,6 +17,25 @@
    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
    02111-1307 USA.  */
 
+#ifndef C_LABEL
+
+/* Define a macro we can use to construct the asm name for a C symbol.  */
+#ifdef	NO_UNDERSCORES
+#ifdef	__STDC__
+#define C_LABEL(name)		name##:
+#else
+#define C_LABEL(name)		name/**/:
+#endif
+#else
+#ifdef	__STDC__
+#define C_LABEL(name)		_##name##:
+#else
+#define C_LABEL(name)		_/**/name/**/:
+#endif
+#endif
+
+#endif
+
 #ifdef __ASSEMBLER__
 /* Mark the end of function named SYM.  This is used on some platforms
    to generate correct debugging information.  */




More information about the uClibc-cvs mailing list