*** empty log message ***
authorca
Thu, 27 Jul 2006 12:11:50 +0200
changeset 9460 812f48058d90
parent 9459 6cd520c582b3
child 9461 791adb50075f
*** empty log message ***
ExternalLibraryFunction.st
--- a/ExternalLibraryFunction.st	Wed Jul 26 15:37:09 2006 +0200
+++ b/ExternalLibraryFunction.st	Thu Jul 27 12:11:50 2006 +0200
@@ -724,13 +724,11 @@
 #ifdef WIN32
         __STX_C_CALL4( "ffi_call", ffi_call, &__cif, codeAddress, __returnValuePointer, __argValuePointersIncludingThis);
 #else
-fprintf(stderr, 'async\n');
         __BEGIN_INTERRUPTABLE__
         ffi_call(&__cif, codeAddress, __returnValuePointer, __argValuePointersIncludingThis);
         __END_INTERRUPTABLE__
 #endif
     } else {
-fprintf(stderr, 'sync\n');
         ffi_call(&__cif, codeAddress, __returnValuePointer, __argValuePointersIncludingThis);
     }
 
@@ -794,5 +792,5 @@
 !ExternalLibraryFunction class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ExternalLibraryFunction.st,v 1.32 2006-07-26 13:37:09 ca Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ExternalLibraryFunction.st,v 1.33 2006-07-27 10:11:50 ca Exp $'
 ! !