comparison c1x4hotspotsrc/HotSpotVM/src/com/sun/hotspot/c1x/VMEntriesNative.java @ 2288:8c426c2891c8

client/server: new interface Remote marks classes that should not be serialized, but called remotely
author Lukas Stadler <lukas.stadler@jku.at>
date Mon, 11 Apr 2011 10:37:24 +0200
parents 8f033d37798a
children e3c42b8de67e
comparison
equal deleted inserted replaced
2287:66ffa0e99cef 2288:8c426c2891c8
21 21
22 package com.sun.hotspot.c1x; 22 package com.sun.hotspot.c1x;
23 23
24 import com.sun.cri.ci.*; 24 import com.sun.cri.ci.*;
25 import com.sun.cri.ri.*; 25 import com.sun.cri.ri.*;
26 import com.sun.hotspot.c1x.server.*;
26 27
27 /** 28 /**
28 * Entries into the HotSpot VM from Java code. 29 * Entries into the HotSpot VM from Java code.
29 * 30 *
30 * @author Thomas Wuerthinger, Lukas Stadler 31 * @author Thomas Wuerthinger, Lukas Stadler
31 */ 32 */
32 public class VMEntriesNative implements VMEntries { 33 public class VMEntriesNative implements VMEntries, Remote {
33 34
34 // Checkstyle: stop 35 // Checkstyle: stop
35 @Override 36 @Override
36 public native byte[] RiMethod_code(long vmId); 37 public native byte[] RiMethod_code(long vmId);
37 38