Improve build speed

This improves the speed of clearing of the FAT image with using a bigger buffer
Zig master
This commit is contained in:
Edward Dean 2021-03-05 17:03:20 +00:00
parent 0d2325d73a
commit 64a91ff7e4
2 changed files with 27 additions and 4 deletions

View file

@ -206,7 +206,7 @@ pub const RuntimeStep = struct {
try self.os_proc.spawn();
// Start up the read thread
var thread = try Thread.spawn(self, read_logs);
var thread = try Thread.spawn(read_logs, self);
// Call the testing function
const res = self.test_func(self);