Is it possible to synchronize two linux processes at some system calls without modifying their code?
A real world example: v4l2-ctl is a tool that can be used to set certain controls of a web camera. After running it to set some controls, ffmpeg is used to capture a movie with the camera. However, setting only some controls on it's own and resetting some other, ffmpeg ruins the careful adjustments made by v4l2-ctl.
Now it would be useful to remedy this problem without having to modify and rebuilt one or both of this tools. This would be possible if ffmpeg could be started, but would be suspended after it opened and configured /dev/video0 (most likely some ioctls happened) and v4l2-ctl would be invoked then to apply the settings. After that, ffmpeg would be resumed and start capturing with the right settings in place.
Is this possible to track one processes io operations and suspend it on some by easy means?