aboutsummaryrefslogtreecommitdiff
path: root/src/im-sandbox.c
AgeCommit message (Collapse)Author
2019-03-07indexamajig: Status message improvementsThomas White
1. Show the number of hits 2. Keep producing updates while the last patterns are being processed 3. Don't duplicate the code for displaying the status messages
2019-03-07Remove old debug messageThomas White
2019-01-30Simplify fill_queue()Thomas White
2019-01-30Fixes for get_pattern()Thomas White
2019-01-30Fix read_prefixed_filename()Thomas White
2019-01-29Remove debugging messageThomas White
2019-01-29Tidy up no_moreThomas White
2019-01-29Improvements to get_pattern()Thomas White
2019-01-29Add multi_event_geometry() functionThomas White
2019-01-22Fix some small memory leaksThomas White
2019-01-03indexamajig: Return non-zero exit status if no patterns were processedThomas White
2018-11-15indexamajig: Name and shame slow processing stagesThomas White
2018-11-14Remove unused variablesThomas White
2018-11-09Time account fussinessThomas White
2018-07-10Add more filenames to cleanup listThomas White
2018-07-10Delete mosflm.lp and SUMMARY when cleaning up temporary folderThomas White
2018-07-10indexamajig: Move into temporary folder when probing and preparing indexing ↵Thomas White
methods
2018-06-28indexamajig: Delete the temporary folder afterwardsThomas White
... with extreme caution.
2018-06-28indexamajig: Tighten permissions on temporary folderThomas White
2018-05-24indexamajig: Warn if a frame takes more than 10 minutes to processThomas White
2018-05-24indexamajig: Show timeout in minutes not secondsThomas White
2018-04-27get_pattern(): Check event ID could be parsed correctlyThomas White
2018-04-27FussinessThomas White
2017-12-12indexamajig: Rename --serial-offset to --serial-startThomas White
Because "offset" sounds like it will add the argument to the serial numbers, i.e. --serial-offset=500 would start at 501. Actually, you just give the first serial number you'd like.
2017-12-12indexamajig: Add --serial-offsetThomas White
2017-09-27Fix check for CBF files in event enumerationThomas White
-1 means the check failed.
2017-09-21Improve error message when using CBF files and a multi-event geometryThomas White
2017-05-02Skeleton image file APIThomas White
2017-03-08Allow indexing system to store its own data, independently of indexing methodsThomas White
Previously, the indexing system passed all the information on to the indexing engines and then forgot about it. That made it difficult to do things like check the indexing solution after prediction refinement, because the target unit cell was unavailable. Now, the indexing system itself can keep some information. Of course, that information includes the private pointers for the indexing engines themselves. I took the opportunity to streamline things a little bit. The caller can now set up the indexing system in one step, without having to separately parse the names of the indexing methods. The caller no longer has to keep track of a separate array of methods, instead just one structure which contains everything.
2017-02-02Cannot use stamp_response() hereThomas White
We have a pipe index (0 to n_read), not a process index (0 to n_proc). These are two separate lists, with no correspondence between them. See 7dbbfa4 for another fix related to this issue.
2017-02-02indexamajig: Add ping mechanism to avoid timing out when trying lots of indexersThomas White
2017-01-12indexamajig: Fix hanging on "Waiting for last patterns"Thomas White
2016-08-16indexamajig: Detect and kill hung worker processesThomas White
2016-08-16Remove unused memberThomas White
2016-03-14Add SA_RESTART to signal handlersThomas White
Fixes corrupted output when heavily multi-processing.
2016-03-01indexamajig: Wall clock profilingThomas White
2015-12-13indexamajig: Restart fgets() in pump_chunk() if interrupted by system callThomas White
This fixes the occasional unterminated chunk found in the output.
2015-07-13Fix racy queue fillingThomas White
2015-07-13Slow down the status updatesThomas White
2015-07-13Clean up semaphore on interruptThomas White
Necessary since we encourage users to interrupt indexamajig with Ctrl+C Also, generally improve the signal handling.
2015-07-13Use named semaphores instead of unnamedThomas White
2015-07-13indexamajig: Avoid forking while multithreadedThomas White
Conflicts: src/im-sandbox.c
2015-07-13Re-work im-sandboxThomas White
... it certainly needed it.
2015-07-09Tidy up error handling when given dodgy data locationsThomas White
2015-06-25Tidy up some small leaks and memory bugsThomas White
2015-06-23s/MAP_ANONYMOUS/MAP_ANON/Thomas White
Needed for OSX compatability
2015-06-18Replace semaphore with a mutexThomas White
A mutex (in a shared memory segment) is the correct synchronisation primitive here. I had confused myself...
2015-06-17Use a POSIX semaphore for synchronising terminal access during indexingThomas White
Nice side-effect: indexamajig -j and --int-diag can now be used together
2015-02-05Remove --element option from inxexamajigValerio Mariani
2014-12-10Further improvements to reading of events in worker processesThomas White