package emulatorinterface.communication; public class CustomAsmCharPool { byte pool[][][]; int head[]; int tail[]; final int bufferSize = 2*1024; public CustomAsmCharPool(int maxApplicationThreads) { pool = new byte[maxApplicationThreads][bufferSize][64]; head = new int[maxApplicationThreads]; tail = new int[maxApplicationThreads]; for(int tidApp=0; tidApp