aboutsummaryrefslogtreecommitdiff
path: root/src/multiprocessing.c
Commit message (Collapse)AuthorAgeFilesLines
* "Task started" is more accurate than "queued" when this is printedJoseph Hunkeler2024-10-021-2/+2
|
* Allow user to define the time interval for "task is running" messageJoseph Hunkeler2024-10-021-5/+10
|
* Use watcher_diff to see how many seconds have elapsed.Joseph Hunkeler2024-10-011-2/+1
|
* Replace strlcpy with strncpy (maybe later)Joseph Hunkeler2024-09-301-1/+1
|
* Replace sprintf with snprintfJoseph Hunkeler2024-09-301-1/+1
|
* Shorten commentJoseph Hunkeler2024-09-301-2/+3
|
* Fix leakJoseph Hunkeler2024-09-271-1/+1
| | | | | * When strdup fails and the temporary file handle is open, close the handle and die. * reported by @kmacdonald-stsci
* Fix missing COMMAND string in the log headerJoseph Hunkeler2024-09-271-0/+10
|
* mp_pool_init(): return NULL when ident argument is NULLJoseph Hunkeler2024-09-271-1/+2
| | | | * reported by @kmacdonald-stsci
* Show "Task is running" every X seconds, instead of X iterationsJoseph Hunkeler2024-09-271-6/+7
|
* Terminate everything when forking failsJoseph Hunkeler2024-09-271-1/+1
|
* Move log_file path assignment into the childJoseph Hunkeler2024-09-271-2/+0
|
* "Task started" message is redundantJoseph Hunkeler2024-09-271-1/+2
|
* SpacingJoseph Hunkeler2024-09-261-0/+1
|
* Do not fork immediately after a task is createdJoseph Hunkeler2024-09-261-4/+0
|
* Zero log_file to avoid garbage outputJoseph Hunkeler2024-09-261-0/+1
|
* Implement cmd and working_dirJoseph Hunkeler2024-09-261-16/+13
|
* Remove usage of POSIX semaphoresJoseph Hunkeler2024-09-261-26/+9
|
* Fix incorrect failure countJoseph Hunkeler2024-09-181-1/+2
| | | | * No longer adds the raw status value to the failure count. Just increment it instead.
* Comment get_task_durationJoseph Hunkeler2024-09-181-0/+2
|
* Move process status checks outside of the if-statementJoseph Hunkeler2024-09-181-10/+18
| | | | | * Reverse the order of checks so signals actually get reported when they occur * Changed "Task finished" to "Task ended". "Finished" sounds more like "success" and might get confusing when an error occurs
* mp_pool_kill marks PIDs as unusedJoseph Hunkeler2024-09-181-0/+2
|
* Rename mp_task to mp_pool_taskJoseph Hunkeler2024-09-181-1/+1
|
* Bugfix: log_show_contents() did not close FILE pointerJoseph Hunkeler2024-09-181-0/+1
|
* Remove short circuit test codeJoseph Hunkeler2024-09-181-28/+1
| | | | * Remove exmain() and dead comments from main()
* Fix test status expectationJoseph Hunkeler2024-09-181-2/+1
| | | | * Fix child not returning result of execvp(). task->status is for program status, not fork() status.
* Fix format spacingJoseph Hunkeler2024-09-181-1/+1
|
* Add pool summary and elapsed time outputJoseph Hunkeler2024-09-181-0/+48
| | | | | | | * Add get_task_duration() * Add get_pool_show_summary() * Add signaled_by member to MultiProcessingTask * Add time_data member to MultiProcessingTask for duration tracking
* Wait for signaled processes to hang upJoseph Hunkeler2024-09-181-1/+5
| | | | * Only initiate a kill if we have more than one process. The current process is already failed out, no need to terminate it again.
* Set task status to -1 by defaultJoseph Hunkeler2024-09-181-0/+3
|
* Add comments, remove dead codeJoseph Hunkeler2024-09-181-2/+24
|
* Break parent/child calls into static functionsJoseph Hunkeler2024-09-181-71/+86
|
* Split mp_task into to functionsJoseph Hunkeler2024-09-181-63/+74
|
* Guard against overrunJoseph Hunkeler2024-09-181-2/+6
|
* Add multiprocessing.h to core.hJoseph Hunkeler2024-09-181-1/+1
| | | | * Remove multiprocessing.h from other files
* Fix sem_open initial stateJoseph Hunkeler2024-09-181-27/+14
| | | | | | * Move slot->gate assignment to mp_pool_task() * Remove mmap() to slot->gate. * Change type of ident and log_root variables for the sake of easy (fewer maps)
* Darwin: Remove mmap MAP_POPULATE flagJoseph Hunkeler2024-09-181-3/+3
|
* Darwin portability: Use sem_open and sem_close instead of sem_init and ↵Joseph Hunkeler2024-09-181-4/+7
| | | | sem_destroy
* Fixing headersJoseph Hunkeler2024-09-181-2/+0
|
* Move guard_ macros to core_mem.hJoseph Hunkeler2024-09-181-0/+373
* Move core_mem.h below config.h