Facing Issues while debugging blender on vs code

Using debugger in vs code step over should go to line 882 in this case but it is instead going to line shown in below image.

I’m generating debug build using: make lite debug developer ninja ccache

Try using

"args": [
	"-t",
	"1"
],

in your launch configuration in vscode.

This “jumping” can happen when blender is running with multiple threads.

I tried it but it is still behaving same as before