Flag.java 554 B

1234567891011121314151617
  1. // Copyright (C) 2013 by Yan Huang <yhuang@cs.umd.edu>
  2. // and Xiao Shaun Wang <wangxiao@cs.umd.edu>
  3. package com.oblivm.backend.flexsc;
  4. import com.oblivm.backend.util.StopWatch;
  5. public class Flag {
  6. public static boolean CountTime = false;
  7. public static StopWatch sw = new StopWatch(CountTime);
  8. public static boolean countIO = false;
  9. public static boolean FakeOT = true;
  10. public static boolean ProprocessOT = false;
  11. public static int OTBlockSize = 1024 * 64;
  12. public static boolean offline = true;
  13. public static String tableName = "table";
  14. }