Просмотр исходного кода

2010-01-26 U-anarquia\miguel <miguel@anarquia>

	* mono-dl.c: Removed debugging messages for the embeddable version
	of mono-dl.

svn path=/trunk/mono/; revision=150273
Miguel de Icaza 16 лет назад
Родитель
Сommit
c8a2d6adfe
2 измененных файлов с 5 добавлено и 2 удалено
  1. 5 0
      mono/utils/ChangeLog
  2. 0 2
      mono/utils/mono-dl.c

+ 5 - 0
mono/utils/ChangeLog

@@ -1,3 +1,8 @@
+2010-01-26  U-anarquia\miguel  <miguel@anarquia>
+
+	* mono-dl.c: Removed debugging messages for the embeddable version
+	of mono-dl.
+
 2010-01-22 Miguel de Icaza ([email protected])
 
 	* mono-dl.c: Always strdup the return value, for consistency.

+ 0 - 2
mono/utils/mono-dl.c

@@ -520,7 +520,6 @@ LL_SO_OPEN (const char *file, int flag)
 		
 	mappings = g_hash_table_lookup (mono_dls, file);
 	ll_last_error = mappings == NULL ? "File not registered" : "";
-	printf ("Returning mappings=0x%p\n", mappings);
 	return mappings;
 }
 
@@ -535,7 +534,6 @@ _LL_SO_SYMBOL (void *handle, const char *symbol)
 {
 	MonoDlMapping *mappings = (MonoDlMapping *) handle;
 	
-	printf ("During lookup: 0x%p\n", handle);
 	for (;mappings->name; mappings++){
 		if (strcmp (symbol, mappings->name) == 0){
 			ll_last_error = "";