1 /* 2 +----------------------------------------------------------------------+ 3 | Copyright (c) The PHP Group | 4 +----------------------------------------------------------------------+ 5 | This source file is subject to version 3.01 of the PHP license, | 6 | that is bundled with this package in the file LICENSE, and is | 7 | available at through the world-wide-web at the following url: | 8 | http://www.php.net/license/3_01.txt. | 9 | If you did not receive a copy of the PHP license and are unable to | 10 | obtain it through the world-wide-web, please send a note to | 11 | license@php.net so we can mail you a copy immediately. | 12 +----------------------------------------------------------------------+ 13 | Author: George Wang <gwang@litespeedtech.com> | 14 +----------------------------------------------------------------------+ 15 */ 16 /* 17 Copyright (c) 2002-2018, Lite Speed Technologies Inc. 18 All rights reserved. 19 20 Redistribution and use in source and binary forms, with or without 21 modification, are permitted provided that the following conditions are 22 met: 23 24 * Redistributions of source code must retain the above copyright 25 notice, this list of conditions and the following disclaimer. 26 * Redistributions in binary form must reproduce the above 27 copyright notice, this list of conditions and the following 28 disclaimer in the documentation and/or other materials provided 29 with the distribution. 30 * Neither the name of the Lite Speed Technologies Inc nor the 31 names of its contributors may be used to endorse or promote 32 products derived from this software without specific prior 33 written permission. 34 35 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 36 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 37 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 38 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 39 OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 40 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 41 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 42 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 43 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 44 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 45 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 46 */ 47 48 #ifndef _LSCRIU_H_ 49 #define _LSCRIU_H_ 50 51 #if defined (c_plusplus) || defined (__cplusplus) 52 extern "C" { 53 #endif 54 55 // return 1 if CRIU is available, return 0 if CRIU is not available 56 int LSCRIU_Init(void); 57 58 void LSCRIU_inc_req_procssed(void); 59 60 61 #if defined (c_plusplus) || defined (__cplusplus) 62 } 63 #endif 64 65 #endif // LSCRIU_ 66