Proper use of printf with JNI?
Hi,
I'm trying to print things in a native method by invoking a calling in my test main of my java program. However, the printf's in my native method are not printed to the screen until after ALL of my System.out.println calls in my main are printed to the screen (even the ones that are called AFTER the native method call). Is this normal? Is there some sort of buffer that i'm missing? How can i get my printfs to print when they are called?
Thanks!

