Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add asynchronous API (except wait) for communications
[simgrid.git] / src / jmsg_comm.h
1 /* Functions related to the java comm instances                                                                                                                                 */
2
3 /* Copyright (c) 2012. The SimGrid Team. All rights reserved.                   */
4
5 #ifndef MSG_JCOMM_H
6 #define MSG_JCOMM_H
7 #include <jni.h>
8
9 JNIEXPORT void JNICALL
10 Java_org_simgrid_msg_Comm_unbind(JNIEnv *env, jobject jcomm);
11
12 JNIEXPORT jboolean JNICALL
13 Java_org_simgrid_msg_Comm_test(JNIEnv *env, jobject jcomm);
14 #endif /* MSG_JCOMM_H */