The macOS LaunchServices agent sends a SIGCONT to the process it is managing in the process of starting up. This means processes that lldb attaches to when run by this agent stop somewhere in their startup with a SIGCONT. That's a bit annoying if you are trying to debug, and really annoying if you are running batch tests in the debugger, for instance.
That can be fixed by changing your "SIGCONT" handling, but when the issue came to my attention, it got me wondering whether stopping in the debugger for SIGCONT is really useful behavior? For the most part this means some job control operation was going on, but do you actually want to stop again after something, for instance, stopped & resumed your app? It seems to me unless you are explicitly debugging an interaction with this job control, stopping is just an annoyance.
So I'm proposing to change the default behavior to nonstop/noprint/pass from stop/print/pass.
I'm adding folks that are responsible for some of the other Unixen platforms as reviewers. If anybody has a good use case where this would be useful as a default, please speak up and I'll ditch this revision (and just get the clients that deal with LS to change the handling on their own.)