util.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #ifndef __SERVER_UTIL_H
  2. #define __SERVER_UTIL_H
  3. /***************************************************************************
  4. * _ _ ____ _
  5. * Project ___| | | | _ \| |
  6. * / __| | | | |_) | |
  7. * | (__| |_| | _ <| |___
  8. * \___|\___/|_| \_\_____|
  9. *
  10. * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al.
  11. *
  12. * This software is licensed as described in the file COPYING, which
  13. * you should have received as part of this distribution. The terms
  14. * are also available at http://curl.haxx.se/docs/copyright.html.
  15. *
  16. * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  17. * copies of the Software, and permit persons to whom the Software is
  18. * furnished to do so, under the terms of the COPYING file.
  19. *
  20. * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  21. * KIND, either express or implied.
  22. *
  23. ***************************************************************************/
  24. void logmsg(const char *msg, ...);
  25. #define TEST_DATA_PATH "%s/data/test%ld"
  26. #define SERVERLOGS_LOCK "log/serverlogs.lock"
  27. /* global variable, where to find the 'data' dir */
  28. extern const char *path;
  29. /* global variable, log file name */
  30. extern const char *serverlogfile;
  31. #ifdef WIN32
  32. #include <process.h>
  33. #include <fcntl.h>
  34. #define sleep(sec) Sleep ((sec)*1000)
  35. #undef perror
  36. #define perror(m) win32_perror(m)
  37. void win32_perror (const char *msg);
  38. #endif /* WIN32 */
  39. #ifdef USE_WINSOCK
  40. void win32_init(void);
  41. void win32_cleanup(void);
  42. #endif /* USE_WINSOCK */
  43. /* returns the path name to the test case file */
  44. char *test2file(long testno);
  45. int wait_ms(int timeout_ms);
  46. int write_pidfile(const char *filename);
  47. void set_advisor_read_lock(const char *filename);
  48. void clear_advisor_read_lock(const char *filename);
  49. #endif /* __SERVER_UTIL_H */