> Does anyone know if this is normal behaviour or not? > Does anyone know when/why this call is made?
the call is made if the function PA_IsProcessDying() is called in the plugin http://sources.4d.com/trac/4d_4dpluginapi/wiki/EntryPoints.h.htm it is basically the equivalent of the native 4D command "Process aborted" http://doc.4d.com/4Dv15/4D/15.5/Process-aborted.301-3577513.en.html you need to identify which plugin command supposedly has that function inserted in each iteration of an intense loop. personally I would not write code like that, maybe use a new thread or yield every n iterations. but if the code is written like that, then I guess that is normal in the sense that bad code does bad things. if you can identify the offending IC function, and there is a viable replacement, that might be your best shot. Internet Commands is by no ways deprecated, but it is also a very old piece of work. ********************************************************************** 4D Internet Users Group (4D iNUG) FAQ: http://lists.4d.com/faqnug.html Archive: http://lists.4d.com/archives.html Options: http://lists.4d.com/mailman/options/4d_tech Unsub: mailto:[email protected] **********************************************************************

