The module is advised to call this function from the fork child once in a while, * so that it can report progress and COW memory to the parent which will be * reported in INFO. * The `progress` argument should between 0 and 1, or -1 when not available. */
| 7880 | * reported in INFO. |
| 7881 | * The `progress` argument should between 0 and 1, or -1 when not available. */ |
| 7882 | void RM_SendChildHeartbeat(double progress) { |
| 7883 | sendChildInfoGeneric(CHILD_INFO_TYPE_CURRENT_INFO, 0, progress, "Module fork"); |
| 7884 | } |
| 7885 | |
| 7886 | /* Call from the child process when you want to terminate it. |
| 7887 | * retcode will be provided to the done handler executed on the parent process. |
nothing calls this directly
no test coverage detected