]> rtime.felk.cvut.cz Git - orte.git/blob - orte/libjorte/JORTETypeRegisterDestroyAll.c
436ecfb09f98c5422cca27555f39534b09d6de67
[orte.git] / orte / libjorte / JORTETypeRegisterDestroyAll.c
1 /* JORTETypeRegisterDestroyAll.c */
2
3 /**
4   * This code provides conversion between JAVA a C environments.
5   * The C functions are calling here and results are send to JAVA
6   * native functions. It uses the header pregenerated by JAVA
7   * (by command 'javah -jni class_with_native_function')
8   *
9   * @author Lukas Pokorny (lukas_pokorny@centrum.cz)
10   * @author Martin Vajnar (martin.vajnar@gmail.com)
11   * @author CTU FEE Prague - Department of Control Engineering (dce.felk.cvut.cz)
12   * @author Project ORTE - OCERA Real Time Ethernet (www.ocera.org)
13   * @author dedication to Kj
14   * @version 0.1
15   *
16   *
17   * This program is free software; you can redistribute it and/or modify
18   * it under the terms of the GNU General Public License as published by
19   * the Free Software Foundation; either version 2 of the License, or
20   * (at your option) any later version.
21   *
22   * This program is distributed in the hope that it will be useful,
23   * but WITHOUT ANY WARRANTY; without even the implied warranty of
24   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25   * GNU General Public License for more details.
26   *
27   */
28
29
30 #include "jorte/jorte.h"
31
32
33 JNIEXPORT jboolean JNICALL
34 Java_org_ocera_orte_DomainApp_jORTETypeRegisterDestroyAll
35 (JNIEnv *env, jclass cls, jlong j_app_domain_handle)
36 {
37   int b;
38
39   if(j_app_domain_handle == 0)
40   {
41     printf(":!c: can not destroy all reg. types! [bad handle] \n");
42     return 0;
43   }
44   // call ORTE function
45   b = ORTETypeRegisterDestroyAll((ORTEDomain *) j_app_domain_handle);
46   if(b == ORTE_OK) return 1;
47   return 0;
48 }