src/windows/native/java/io/FileOutputStream_md.c

Print this page
rev 10457 : 8054720: Modifications of I/O methods for instrumentation purposes
Summary: Wrap some native methods in Java methods and change native method names to a consistent form.
Reviewed-by: TBD

*** 52,62 **** /************************************************************** * Output stream */ JNIEXPORT void JNICALL ! Java_java_io_FileOutputStream_open(JNIEnv *env, jobject this, jstring path, jboolean append) { fileOpen(env, this, path, fos_fd, O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC)); } --- 52,62 ---- /************************************************************** * Output stream */ JNIEXPORT void JNICALL ! Java_java_io_FileOutputStream_open0(JNIEnv *env, jobject this, jstring path, jboolean append) { fileOpen(env, this, path, fos_fd, O_WRONLY | O_CREAT | (append ? O_APPEND : O_TRUNC)); }