Invoke commit_checkpoint_request() in all storage engines that implement it. If pre_hook is non-NULL, the hook will be called prior to each invocation. */
| 943 | If pre_hook is non-NULL, the hook will be called prior to each invocation. |
| 944 | */ |
| 945 | void |
| 946 | ha_commit_checkpoint_request(void *cookie, void (*pre_hook)(void *)) |
| 947 | { |
| 948 | st_commit_checkpoint_request st; |
| 949 | st.cookie= cookie; |
| 950 | st.pre_hook= pre_hook; |
| 951 | tp_foreach(NULL, commit_checkpoint_request_handlerton, &st); |
| 952 | } |
| 953 | |
| 954 | |
| 955 | /** |
no test coverage detected