Hi,
I finally managed to get the Debugger to stop at a breakpoint in my PlugIn! Great! But it seems to be acting strangely, for instance in the following code snippet:.
MCstring matrixelement; char *convimage; int convmatrix[3][3]; int width,height, bytesperline, scale,i,j; char keybuffer[8]; Bool success = True; //A width = atoi(args[1]); //B height = atoi(args[2]); //C scale = atoi(args[3]); //D
I hit the break point at the top of the function, I then use "Step Over" to step down to the line marked B above. However, when I step from B to C, the cursor jumps back to A. In I step again it moves to B and then to C and then back to A again!!!!!
Also I am getting a GDB: Program received signal "EXC_BAD_ACCESS" after my function returns. Which seems weird because this this plugin works just fine!
All the Best Dave
|