Example:
auto buffer = pidsNoGC();
writeln("Found ", buffer.count, " processes");Gets all process IDs without GC allocation.
This function populates a fixed-size buffer with process IDs, avoiding garbage collector allocation.
Example:
auto buffer = pidsNoGC();
writeln("Found ", buffer.count, " processes");