A guess
Whilst Spin Control.app is no longer present, the operating system might respect changes to preferences in the com.apple.spincontrol domain.
If that is true, then a change to the value for hangDelay could effectively change the delay before sampling begins:
sh-3.2$ defaults read com.apple.spincontrol
{
hangDelay = 5;
watchOnlyApplication = 0;
}
sh-3.2$ defaults write com.apple.spincontrol hangDelay 10
sh-3.2$ defaults read com.apple.spincontrol
{
hangDelay = 10;
watchOnlyApplication = 0;
}
sh-3.2$
Less likely
For when a single application was watched, I guess that the value for watchOnlyApplication could be either the name or PID of the process (thanks to @Aeyoun for a comment). There's a description of the feature but not the values in a 2006 MacTech article, OS X Investigation and Troubleshooting - Part 2: The Secrets to OS X success.
I doubt that setting watchOnlyApplication to anything other than 0 can have any use on a system that is without Spin Control.app.