syslog.h-data 897 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. #if !defined ISO && !defined ISO99 && !defined ISO11 && !defined ISO23 && !defined POSIX && !defined POSIX2008 && !defined XPG4
  2. constant LOG_PID
  3. constant LOG_CONS
  4. constant LOG_NDELAY
  5. constant LOG_ODELAY
  6. constant LOG_NOWAIT
  7. constant LOG_KERN
  8. constant LOG_USER
  9. constant LOG_MAIL
  10. constant LOG_NEWS
  11. constant LOG_UUCP
  12. constant LOG_DAEMON
  13. constant LOG_AUTH
  14. constant LOG_CRON
  15. constant LOG_LPR
  16. constant LOG_LOCAL0
  17. constant LOG_LOCAL1
  18. constant LOG_LOCAL2
  19. constant LOG_LOCAL3
  20. constant LOG_LOCAL4
  21. constant LOG_LOCAL5
  22. constant LOG_LOCAL6
  23. constant LOG_LOCAL7
  24. macro LOG_MASK
  25. constant LOG_EMERG
  26. constant LOG_ALERT
  27. constant LOG_CRIT
  28. constant LOG_ERR
  29. constant LOG_WARNING
  30. constant LOG_NOTICE
  31. constant LOG_INFO
  32. constant LOG_DEBUG
  33. function void closelog (void)
  34. function void openlog (const char*, int, int)
  35. function int setlogmask (int)
  36. function void syslog (int, const char*, ...)
  37. allow LOG_*
  38. allow *_t
  39. #endif