I use outlet_float() in an external to output messages. How often is it allowed to send a message in a loop? I didn't find anything about it...
the built-in "stack overflow" counter allows a recursion of 1000/(#obj involved)
not exactly ... the 1000 frames recursion depth is used by devel ... iirc miller's version is limiting the recursions by stack size ... so it would depend on the objects ...
but a construction like: for (int i = 0; i != infinity; ++i) outlet_float()
is an iteration, not a recursion ... so there is no limit (except the speed of the machine) ... the |until| object is working this way ...
hth ... tim