X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/7410b72db09489e8b9d3ee3cb087f35882397d93..5e1b4fa835cedc144a2ebe97fda0d139d63d3058:/src/bindings/java/jmsg_process.h diff --git a/src/bindings/java/jmsg_process.h b/src/bindings/java/jmsg_process.h index 647d41fc44..6704662c54 100644 --- a/src/bindings/java/jmsg_process.h +++ b/src/bindings/java/jmsg_process.h @@ -15,6 +15,15 @@ SG_BEGIN_DECL(); +/* Shut up some errors in eclipse online compiler. I wish such a pimple wouldn't be needed */ +#ifndef JNIEXPORT +#define JNIEXPORT +#endif +#ifndef JNICALL +#define JNICALL +#endif +/* end of eclipse-mandated pimple */ + //Cached java fields extern jfieldID jprocess_field_Process_bind; extern jfieldID jprocess_field_Process_host; @@ -24,8 +33,6 @@ extern jfieldID jprocess_field_Process_name; extern jfieldID jprocess_field_Process_pid; extern jfieldID jprocess_field_Process_ppid; -JNIEXPORT void JNICALL Java_org_simgrid_msg_Process_exit(JNIEnv *env, jobject); - jobject native_to_java_process(msg_process_t process); /** @@ -42,8 +49,8 @@ jobject jprocess_new_global_ref(jobject jprocess, JNIEnv * env); * This function delete a global reference to a java process instance. * If the java process is alive the function joins it and stops it before. * - * @param The global refernce to delete. - * @param env The env of the current thread + * @param jprocess The global refernce to delete. + * @param env The env of the current thread * * @see jprocess_join() * @see jprocess_exit() @@ -53,7 +60,7 @@ void jprocess_delete_global_ref(jobject jprocess, JNIEnv * env); /** * This function waits for a java process to terminate. * - * @param jprocess The java process ot wait for. + * @param jprocess The java process to wait for. * @param env The env of the current thread * * @exception If the class Process is not found the function throws the ClassNotFoundException. If the method