I had a similar problem with our validator recently and it was a memory
leak. In init_result() the input file is opened with handle =
popen("unzip -p...") and an md5 checksum is calculated for this stream.
I added a check for an empty stream and placed my return 2; before
closing the handle. This resulted in almost the same behaviour you see.
I fixed it by moving the return 2; after the handle is closed and it
works now.

Regards
Christian

Am 11.09.2013 22:19, schrieb Radim Vančo:
> I am still trying to solve problem with my validator. It works well at
> start, but after a few days, it starts marking all results as
> inconclusive. If I restart the validator, it validates again well for
> a few days. I am attaching source code of the validator if anyone
> would know where is the problem.
>
> Thanks
>
>
> _______________________________________________
> boinc_dev mailing list
> [email protected]
> http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
> To unsubscribe, visit the above URL and
> (near bottom of page) enter your email address.

_______________________________________________
boinc_dev mailing list
[email protected]
http://lists.ssl.berkeley.edu/mailman/listinfo/boinc_dev
To unsubscribe, visit the above URL and
(near bottom of page) enter your email address.

Reply via email to