1main: { 2 multithreading: { 3 fork: true, 4 threads: [ 5 { 6 name: "Reader"; 7 instruction: { 8 instruction_set: { 9 instructions: [ 10 { 11 open_file: { 12 path_name: "newfile2.txt", 13 output_fd: "test_file" 14 } 15 }, 16 { 17 resize_file: { 18 input_fd: "test_file", 19 size: 101001001 20 } 21 }, 22 { 23 read_file: { 24 input_fd: "test_file" 25 } 26 }, 27 { 28 close_file: { 29 input_fd: "test_file" 30 } 31 } 32 ] 33 } 34 }, 35 spawn: 2 36 } 37 ] 38 }, 39}, 40global { 41 absolute_path: "/sdcard/DCIM/dittobench"; 42} 43