util.h 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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. * $Id$
  24. ***************************************************************************/
  25. void logmsg(const char *msg, ...);
  26. #define TEST_DATA_PATH "%s/data/test%ld"
  27. #define SERVERLOGS_LOCK "log/serverlogs.lock"
  28. /* global variable, where to find the 'data' dir */
  29. extern const char *path;
  30. /* global variable, log file name */
  31. extern const char *serverlogfile;
  32. #ifdef WIN32
  33. #include <process.h>
  34. #include <fcntl.h>
  35. #define sleep(sec) Sleep ((sec)*1000)
  36. #undef perror
  37. #define perror(m) win32_perror(m)
  38. void win32_perror (const char *msg);
  39. #endif /* WIN32 */
  40. #ifdef USE_WINSOCK
  41. void win32_init(void);
  42. void win32_cleanup(void);
  43. #endif /* USE_WINSOCK */
  44. /* returns the path name to the test case file */
  45. char *test2file(long testno);
  46. int wait_ms(int timeout_ms);
  47. int write_pidfile(const char *filename);
  48. void set_advisor_read_lock(const char *filename);
  49. void clear_advisor_read_lock(const char *filename);
  50. #endif /* __SERVER_UTIL_H */