(String[] args)
| 34 | } |
| 35 | |
| 36 | public static void main(String[] args) throws InterruptedException |
| 37 | { |
| 38 | String filename = args[0]; |
| 39 | |
| 40 | gdal.AllRegister(); |
| 41 | |
| 42 | Thread t[] = new Thread[4]; |
| 43 | for(int i=0;i<4;i++) |
| 44 | { |
| 45 | t[i] = new Thread(new multireadtest(filename)); |
| 46 | t[i].start(); |
| 47 | } |
| 48 | for(int i=0;i<4;i++) |
| 49 | { |
| 50 | t[i].join(); |
| 51 | } |
| 52 | //gdal.GDALDestroyDriverManager(); |
| 53 | } |
| 54 | } |
nothing calls this directly
no test coverage detected