Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2010-01-21 00:35:58 +0300
committerMiguel de Icaza <miguel@gnome.org>2010-01-21 00:35:58 +0300
commitfe982b68ac0a736de6ca849b2cfba50a388892d5 (patch)
treefbb54252f277a6e130e2c90091cbc5417f2043be /libgc/include
parent385fa668d41218b2d61551a10cc64332a92381a0 (diff)
remove DOS newlines
svn path=/trunk/mono/; revision=149932
Diffstat (limited to 'libgc/include')
-rw-r--r--libgc/include/private/gcconfig.h38
1 files changed, 19 insertions, 19 deletions
diff --git a/libgc/include/private/gcconfig.h b/libgc/include/private/gcconfig.h
index 39afc92f5c0..aae3755b0d1 100644
--- a/libgc/include/private/gcconfig.h
+++ b/libgc/include/private/gcconfig.h
@@ -884,20 +884,20 @@
# define DATASTART GC_data_start
# define DYNAMIC_LOADING
# endif
-# ifdef SN_TARGET_PS3
-# define NO_GETENV
-# define CPP_WORDSZ 32
-# define ALIGNMENT 4
- extern int _end [];
-// extern int _dso_handle[];
- extern int __bss_start;
-
-# define DATAEND (_end)
-# define DATASTART (__bss_start)
+# ifdef SN_TARGET_PS3
+# define NO_GETENV
+# define CPP_WORDSZ 32
+# define ALIGNMENT 4
+ extern int _end [];
+// extern int _dso_handle[];
+ extern int __bss_start;
+
+# define DATAEND (_end)
+# define DATASTART (__bss_start)
# define STACKBOTTOM ((ptr_t) ps3_get_stack_bottom ())
-# define USE_GENERIC_PUSHREGS
-# endif
-
+# define USE_GENERIC_PUSHREGS
+# endif
+
# ifdef NOSYS
# define ALIGNMENT 4
# define OS_TYPE "NOSYS"
@@ -2233,7 +2233,7 @@
# if defined(PCR) || defined(SRC_M3) || \
defined(GC_SOLARIS_THREADS) || defined(GC_WIN32_THREADS) || \
- defined(GC_PTHREADS) || defined(SN_TARGET_PS3)
+ defined(GC_PTHREADS) || defined(SN_TARGET_PS3)
# define THREADS
# endif
@@ -2384,13 +2384,13 @@
GC_amiga_get_mem((size_t)bytes + GC_page_size) \
+ GC_page_size-1)
# else
-# if defined(SN_TARGET_PS3)
- extern void *ps3_get_mem (size_t size);
-# define GET_MEM(bytes) (struct hblk*) ps3_get_mem (bytes)
-# else
+# if defined(SN_TARGET_PS3)
+ extern void *ps3_get_mem (size_t size);
+# define GET_MEM(bytes) (struct hblk*) ps3_get_mem (bytes)
+# else
extern ptr_t GC_unix_get_mem();
# define GET_MEM(bytes) (struct hblk *)GC_unix_get_mem(bytes)
-#endif
+#endif
# endif
# endif
# endif