Servoy Developer 7.3.1 : a strange "fatal error detected"

Today I started Servoy Developer, and after a minute or so it shut down and showed me this message:

[attachment=1]Capture.JPG[/attachment]

This is really strange because I have done nothing to the system during the last two months: no java update, no new plugins or beans installs, etc. For the last month I just started developer, worked in solutions, and exported the solutions. It’s just weird that this started happening today.

Can anyone offer me clues on what might be wrong? I have attached the error log file: hs_err_pid4380.txt

I am running Servoy Version 7.3.1 -build 2022 in Windows 8.1 Pro/64-bit.

Thanks!
JC

PS: This is not really a programming issue. I just didn’t t know where to put it.

hs_err_pid4380.txt (39.1 KB)

This morning when I opened Developer version 7.3.0, I got this message: “Removed cyclic dependency in the working set ‘Aggregate for window 1359564290553’.”

[attachment=0]Capture2.JPG[/attachment]
Any clues on what might be wrong?

Update: 9/16/2014 10:09:41 AM

It seems that this is a problem with eclipse. See this post: Eclipse returns error message “Java was started but returned exit code = 1”

Update: 9/16/2014 10:14:29 AM

To get Servoy to start susceefully I removed this from the .ini file:
-vmargs

I now have:

-clean
-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.100.v20110502
--launcher.XXMaxPermSize
256m
-Xms40m
-Xmx512m
-XX:MaxPermSize=256M
-Dnativeswing.dependencies.checkVersions=false
-Dsun.awt.disableMixing=true

Servoy team: can this change affect Servoy somehow? Can you test at your end for any problem?

See more info about this issue here: eclipse.ini - Eclipsepedia

if you removed the -vmargs the you pretty much also removed all of these:

-Xms40m
-Xmx512m
-XX:MaxPermSize=256M
-Dnativeswing.dependencies.checkVersions=false
-Dsun.awt.disableMixing=true

because these all depend on the -vmargs switch.
So if that does fix it then it is very likely one of the properties above that is causing the problems
try removing for example the 2 -D properties

besides that, this can’t be a problem with that "Removed cyclic dependency in the working set " because that can’t be related to this
That is just some corrupt workspace. somehow a working set (that we do generate under the hood) is somehow wrong and have cycles in it, how that is possible i don’t know right now.

Johan,

It makes totally sense what you are explaining here. The servoy.ini is now:

-clean
-startup
plugins/org.eclipse.equinox.launcher_1.2.0.v20110502.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.100.v20110502
--launcher.XXMaxPermSize
256m
-vmargs
-Xms40m
-Xmx512m
-XX:MaxPermSize=256M

I put the “-vmargs” back in the .ini file and I removed the 2 -D properties. Developer started fine. As you explained, it was one of the properties that caused the problem.

Thank you very much,
JC