aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.jvmti/interp/getargssize.java
blob: f5a2f25ca71decf99afd72c8617d07002c8e4548 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
public class getargssize
{
  static
    {
      System.loadLibrary("natgetargssize");
    }

  public int aMethod (float fone, int ione)
  {
    return 0;
  }
  
  public long bMethod (long lone, double done, int ione)
  {
    return 0;
  }
  
  public static boolean cMethod ()
  {
    return false;
  }
  
  public static Object dMethod (Object op)
  {
    return op;
  }

  public static native int do_getargssize_tests ();

  public static void main (String[] args)
  {
    System.out.println ("JVMTI getargssize Interpreted Test");

    do_getargssize_tests ();
  }
}