Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'v3_9_x'
[simgrid.git] / src / jmsg_synchro.h
1 /* Functions related to the java process instances.                         */
2
3 /* Copyright (c) 2012. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7   * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #ifndef MSG_JSYNCHRO_H
10 #define MSG_JSYNCHRO_H
11
12 #include <jni.h>
13 #include <msg/msg.h>
14 #include <simgrid/simix.h>
15
16 JNIEXPORT void JNICALL
17 Java_org_simgrid_msg_Mutex_nativeInit(JNIEnv *env, jclass cls);
18
19 JNIEXPORT void JNICALL
20 Java_org_simgrid_msg_Mutex_init(JNIEnv * env, jobject obj);
21
22 JNIEXPORT void JNICALL
23 Java_org_simgrid_msg_Mutex_acquire(JNIEnv * env, jobject obj);
24
25 JNIEXPORT void JNICALL
26 Java_org_simgrid_msg_Mutex_release(JNIEnv * env, jobject obj);
27
28 JNIEXPORT void JNICALL
29 Java_org_simgrid_msg_Mutex_exit(JNIEnv * env, jobject obj);
30
31 #endif                          /* !MSG_JPROCESS_H */