~ubuntu-branches/ubuntu/vivid/emscripten/vivid

« back to all changes in this revision

Viewing changes to tests/nbody-java/org_xmlvm_runtime_Condition.h

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2013-06-11 15:45:24 UTC
  • mfrom: (1.2.1) (2.1.1 experimental)
  • Revision ID: package-import@ubuntu.com-20130611154524-rppb3w6tixlegv4n
Tags: 1.4.7~20130611~a1eb425-1
* New snapshot release
* Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __ORG_XMLVM_RUNTIME_CONDITION__
 
2
#define __ORG_XMLVM_RUNTIME_CONDITION__
 
3
 
 
4
#include "xmlvm.h"
 
5
 
 
6
// Preprocessor constants for interfaces:
 
7
#define XMLVM_ITABLE_SIZE_org_xmlvm_runtime_Condition 0
 
8
// Implemented interfaces:
 
9
// Super Class:
 
10
#include "java_lang_Object.h"
 
11
 
 
12
// Circular references:
 
13
#ifndef XMLVM_FORWARD_DECL_org_xmlvm_runtime_Mutex
 
14
#define XMLVM_FORWARD_DECL_org_xmlvm_runtime_Mutex
 
15
XMLVM_FORWARD_DECL(org_xmlvm_runtime_Mutex)
 
16
#endif
 
17
// Class declarations for org.xmlvm.runtime.Condition
 
18
XMLVM_DEFINE_CLASS(org_xmlvm_runtime_Condition, 6, XMLVM_ITABLE_SIZE_org_xmlvm_runtime_Condition)
 
19
 
 
20
extern JAVA_OBJECT __CLASS_org_xmlvm_runtime_Condition;
 
21
extern JAVA_OBJECT __CLASS_org_xmlvm_runtime_Condition_1ARRAY;
 
22
extern JAVA_OBJECT __CLASS_org_xmlvm_runtime_Condition_2ARRAY;
 
23
extern JAVA_OBJECT __CLASS_org_xmlvm_runtime_Condition_3ARRAY;
 
24
//XMLVM_BEGIN_DECLARATIONS
 
25
#define __ADDITIONAL_INSTANCE_FIELDS_org_xmlvm_runtime_Condition
 
26
//XMLVM_END_DECLARATIONS
 
27
 
 
28
#define __INSTANCE_FIELDS_org_xmlvm_runtime_Condition \
 
29
    __INSTANCE_FIELDS_java_lang_Object; \
 
30
    struct { \
 
31
        JAVA_OBJECT pthreadCondT_; \
 
32
        JAVA_OBJECT synchronizedObject_; \
 
33
        __ADDITIONAL_INSTANCE_FIELDS_org_xmlvm_runtime_Condition \
 
34
    } org_xmlvm_runtime_Condition
 
35
 
 
36
struct org_xmlvm_runtime_Condition {
 
37
    __TIB_DEFINITION_org_xmlvm_runtime_Condition* tib;
 
38
    struct {
 
39
        __INSTANCE_FIELDS_org_xmlvm_runtime_Condition;
 
40
    } fields;
 
41
};
 
42
#ifndef XMLVM_FORWARD_DECL_org_xmlvm_runtime_Condition
 
43
#define XMLVM_FORWARD_DECL_org_xmlvm_runtime_Condition
 
44
typedef struct org_xmlvm_runtime_Condition org_xmlvm_runtime_Condition;
 
45
#endif
 
46
 
 
47
#define XMLVM_VTABLE_SIZE_org_xmlvm_runtime_Condition 6
 
48
 
 
49
void __INIT_org_xmlvm_runtime_Condition();
 
50
void __INIT_IMPL_org_xmlvm_runtime_Condition();
 
51
void __DELETE_org_xmlvm_runtime_Condition(void* me, void* client_data);
 
52
void __INIT_INSTANCE_MEMBERS_org_xmlvm_runtime_Condition(JAVA_OBJECT me, int derivedClassWillRegisterFinalizer);
 
53
JAVA_OBJECT __NEW_org_xmlvm_runtime_Condition();
 
54
JAVA_OBJECT __NEW_INSTANCE_org_xmlvm_runtime_Condition();
 
55
void xmlvm_init_native_org_xmlvm_runtime_Condition();
 
56
void org_xmlvm_runtime_Condition___INIT____java_lang_Object(JAVA_OBJECT me, JAVA_OBJECT n1);
 
57
void org_xmlvm_runtime_Condition_initNativeConditionInstance__(JAVA_OBJECT me);
 
58
JAVA_OBJECT org_xmlvm_runtime_Condition_getSynchronizedObject__(JAVA_OBJECT me);
 
59
void org_xmlvm_runtime_Condition_wait___org_xmlvm_runtime_Mutex(JAVA_OBJECT me, JAVA_OBJECT n1);
 
60
JAVA_BOOLEAN org_xmlvm_runtime_Condition_waitOrTimeout___org_xmlvm_runtime_Mutex_long(JAVA_OBJECT me, JAVA_OBJECT n1, JAVA_LONG n2);
 
61
void org_xmlvm_runtime_Condition_signal__(JAVA_OBJECT me);
 
62
void org_xmlvm_runtime_Condition_broadcast__(JAVA_OBJECT me);
 
63
 
 
64
#endif