1 /*
2  * Copyright (C) by Argonne National Laboratory
3  *     See COPYRIGHT in top-level directory
4  */
5 
6 #ifndef MPIR_PROGRESS_HOOK_H_INCLUDED
7 #define MPIR_PROGRESS_HOOK_H_INCLUDED
8 
9 int MPIR_Progress_hook_exec_all(int *made_progress);
10 int MPIR_Progress_hook_register(int (*progress_fn) (int *), int *id);
11 int MPIR_Progress_hook_deregister(int id);
12 int MPIR_Progress_hook_activate(int id);
13 int MPIR_Progress_hook_deactivate(int id);
14 
15 #endif /* MPIR_PROGRESS_HOOK_H_INCLUDED */
16