1 /* 2 * Copyright (c) 2016 Cyril Hrubis <chrubis@suse.cz> 3 * 4 * This program is free software: you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation, either version 2 of the License, or 7 * (at your option) any later version. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <http://www.gnu.org/licenses/>. 16 */ 17 18 #ifndef TST_CHECKPOINT__ 19 #define TST_CHECKPOINT__ 20 21 #include "tst_checkpoint_fn.h" 22 23 #define TST_CHECKPOINT_WAIT(id) \ 24 tst_safe_checkpoint_wait(__FILE__, __LINE__, NULL, id, 0); 25 26 #define TST_CHECKPOINT_WAIT2(id, msec_timeout) \ 27 tst_safe_checkpoint_wait(__FILE__, __LINE__, NULL, id, msec_timeout); 28 29 #define TST_CHECKPOINT_WAKE(id) \ 30 tst_safe_checkpoint_wake(__FILE__, __LINE__, NULL, id, 1); 31 32 #define TST_CHECKPOINT_WAKE2(id, nr_wake) \ 33 tst_safe_checkpoint_wake(__FILE__, __LINE__, NULL, id, nr_wake); 34 35 #define TST_CHECKPOINT_WAKE_AND_WAIT(id) \ 36 tst_safe_checkpoint_wake(__FILE__, __LINE__, NULL, id, 1); \ 37 tst_safe_checkpoint_wait(__FILE__, __LINE__, NULL, id, 0); 38 39 extern const char *tst_ipc_path; 40 41 #endif /* TST_CHECKPOINT__ */ 42