NdbDaemon.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef NDB_DAEMON_H
  14. #define NDB_DAEMON_H
  15. #ifdef  __cplusplus
  16. extern "C" {
  17. #endif
  18. /*
  19.  * Become a daemon.
  20.  * lockfile     the "pid file" or other resource to lock exclusively
  21.  * logfile      daemon output is directed here (input is set to /dev/null)
  22.  *              if NULL, output redirection is not done
  23.  * flags        none currently
  24.  * returns      0 on success, on error -1
  25.  */
  26. extern int
  27. NdbDaemon_Make(const char* lockfile, const char* logfile, unsigned flags);
  28. /*
  29.  * Test if the daemon is running (file is locked).
  30.  * lockfile     the "pid file"
  31.  * flags        none currently
  32.  * return       0 no, 1 yes, -1 
  33.  */
  34. extern int
  35. NdbDaemon_Test(const char* lockfile, unsigned flags);
  36. /*
  37.  * Kill the daemon.
  38.  * lockfile     the "pid file"
  39.  * flags        none currently
  40.  * return       0 killed, 1 not running, -1 other error
  41.  */
  42. extern int
  43. NdbDaemon_Kill(const char* lockfile, unsigned flags);
  44. /*
  45.  * Pid from last call, either forked off or found in lock file.
  46.  */
  47. extern long NdbDaemon_DaemonPid;
  48. /*
  49.  * Error code from last failed call.
  50.  */
  51. extern int NdbDaemon_ErrorCode;
  52. /*
  53.  * Error text from last failed call.
  54.  */
  55. extern char NdbDaemon_ErrorText[];
  56. #ifdef  __cplusplus
  57. }
  58. #endif
  59. #endif