-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The program crashes after running for a long time(SIGSEGV) #122
Comments
Can you please give some more details, or even better, some code to reproduce this? I personally have applications running for days and did not see any issue. |
The program mainly calls "segmenter json" for word segmentation,after the word segmentation is completed, call "free memory" to release the memory.The program crash occurs when calling "segmenter json"
Also attached is the jvm complete log and code. |
The calling programs are written in php and they create a lot of jvm's. I'm not sure if it's for this reason |
Creating many My guess is that you fall into some race condition while manipulating the In order to verify if the error happens indeed during the let ia = InvocationArg::try_from(text).unwrap();
let result = jvm.invoke_static("com.farseer.utils.IKUtil",
"segmenterJson",
&[ia])
.unwrap(); |
I'll give it a try. |
@lngex, do you have anything new to share regarding this? |
There was a fix in The fix is not published yet. If you want to test it, please use the master. |
Yes, I let them try |
The text was updated successfully, but these errors were encountered: