See: https://github.com/adafruit/DHT-sensor-library/blob/master/DHT.h
In DHT.H the constructor initializes the parameter count=6
DHT(uint8_t pin, uint8_t type, uint8_t count=6);
In DHT.cpp I don't see the variable used anywhere. It only mentions:
// Note that count is now ignored as the DHT reading algorithm
// adjusts itself base on the speed of the processor.
_maxcycles = microsecondsToClockCycles(1000);
How exactly is this variable being utilized at any moment?