aboutsummaryrefslogtreecommitdiff
path: root/gcc
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1996-04-04 12:26:03 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1996-04-04 12:26:03 -0500
commit7fb04be124d79378c83b1d6189f8b928d91ed695 (patch)
tree679817f2fd77fd83a32bf5764f2944826d151650 /gcc
parentcd9255f6d37488e8585f489092e0d9595d40dc70 (diff)
downloadgcc-7fb04be124d79378c83b1d6189f8b928d91ed695.zip
gcc-7fb04be124d79378c83b1d6189f8b928d91ed695.tar.gz
gcc-7fb04be124d79378c83b1d6189f8b928d91ed695.tar.bz2
Rename thread-* to thr-*.
From-SVN: r11664
Diffstat (limited to 'gcc')
-rw-r--r--gcc/objc/thr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/objc/thr.c b/gcc/objc/thr.c
index 1b51140..2b421d8 100644
--- a/gcc/objc/thr.c
+++ b/gcc/objc/thr.c
@@ -118,15 +118,15 @@ objc_mutex_lock_x(_objc_mutex_t mutex, const char *f, int l)
*/
#if defined(__sparc__) && defined(__svr4__) /* Solaris only code. */
-#include "thread-solaris.c"
+#include "thr-solaris.c"
#elif defined(__sgi__) && defined(__mips__) /* IRIX only code. */
-#include "thread-irix.c"
+#include "thr-irix.c"
#elif defined(__alpha__) && defined(__osf__) /* Alpha OSF/1 only code. */
-#include "thread-decosf1.c"
+#include "thr-decosf1.c"
#elif defined(__WIN32__)
-#include "thread-win32.c"
+#include "thr-win32.c"
#else /* Single threaded code. */
-#include "thread-single.c"
+#include "thr-single.c"
#endif
/* End of File */