Play around with doxygen a bit more, since I don't want to give up on it just yet.
Started 'copying' some comments from the String.cpp file. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@19642 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -63,3 +63,166 @@ global session.
|
||||
/*! \fn int setlogmask_thread(int priorityMask)
|
||||
\brief sets the logging priority mask
|
||||
*/
|
||||
|
||||
/*! @{
|
||||
\name Options for openlog()
|
||||
*/
|
||||
|
||||
/*! \def LOG_PID
|
||||
\brief Log the process (thread/team) ID with each message
|
||||
*/
|
||||
|
||||
/*! \def LOG_CONS
|
||||
\brief Log to the system console on error
|
||||
*/
|
||||
|
||||
/*! \def LOG_ODELAY
|
||||
\brief Delay open until syslog() is called
|
||||
*/
|
||||
|
||||
/*! \def LOG_NDELAY
|
||||
\brief Connect to the syslog daemon immediately
|
||||
*/
|
||||
|
||||
/*! \def LOG_SERIAL
|
||||
\brief Dump to serial output as well.
|
||||
\attention This is not yet implemented
|
||||
*/
|
||||
|
||||
/*! \def LOG_PERROR
|
||||
\brief Dump to stderr as well
|
||||
*/
|
||||
|
||||
/*! \def LOG_NOWAIT
|
||||
\brief Do not wait for child processes
|
||||
*/
|
||||
|
||||
//! @}
|
||||
|
||||
/*! @{
|
||||
\name Facilities for openlog()
|
||||
*/
|
||||
|
||||
/*! \def LOG_KERN
|
||||
\brief Reserved for messages generated by the kernel.
|
||||
*/
|
||||
|
||||
/*! \def LOG_USER
|
||||
\brief Reserved for messages generated by user processes.
|
||||
*/
|
||||
|
||||
/*! \def LOG_MAIL
|
||||
\brief Standard (?) POSIX facility for messages by the mailing daemon.
|
||||
*/
|
||||
|
||||
/*! \def LOG_DAEMON
|
||||
\brief Standard POSIX (?) facility for messages by daemons (and Haiku servers).
|
||||
*/
|
||||
|
||||
/*! \def LOG_AUTH
|
||||
\brief Standard POSIX facility(?) for messages by the authentication services.
|
||||
*/
|
||||
|
||||
/*! \def LOG_SYSLOG
|
||||
\brief Reserved for messages generated by the syslog daemon.
|
||||
*/
|
||||
|
||||
/*! \def LOG_LPR
|
||||
\brief Reserved for messages generated by the UNIX lpr printing tool.
|
||||
*/
|
||||
|
||||
/*! \def LOG_NEWS
|
||||
\brief Reserved for messages generated by something UNIXy that does something with NEWS.
|
||||
*/
|
||||
|
||||
/*! \def LOG_UUCP
|
||||
\brief Reserved for messages generated by UUCP
|
||||
*/
|
||||
|
||||
/*! \def LOG_CRON
|
||||
\brief Reserved for messages generated by the CRON daemon.
|
||||
*/
|
||||
|
||||
/*! \def LOG_AUTHPRIV
|
||||
\brief Reserved for private (?) messages that relate to authentication.
|
||||
*/
|
||||
|
||||
/*! \def LOG_LOCAL0
|
||||
\brief Use this for local use.
|
||||
*/
|
||||
|
||||
/*! \def LOG_LOCAL1
|
||||
\brief Use this for local use.
|
||||
*/
|
||||
|
||||
/*! \def LOG_LOCAL2
|
||||
\brief Use this for local use.
|
||||
*/
|
||||
|
||||
/*! \def LOG_LOCAL3
|
||||
\brief Use this for local use.
|
||||
*/
|
||||
|
||||
/*! \def LOG_LOCAL4
|
||||
\brief Use this for local use.
|
||||
*/
|
||||
|
||||
/*! \def LOG_LOCAL5
|
||||
\brief Use this for local use.
|
||||
*/
|
||||
|
||||
/*! \def LOG_LOCAL6
|
||||
\brief Use this for local use.
|
||||
*/
|
||||
|
||||
/*! \def LOG_LOCAL7
|
||||
\brief Use this for local use.
|
||||
*/
|
||||
|
||||
//! @}
|
||||
|
||||
/*! @{
|
||||
\name Priorities for syslog(), log_team() and log_thread()
|
||||
*/
|
||||
|
||||
/*! \def LOG_EMERG
|
||||
\brief A panic condition
|
||||
*/
|
||||
|
||||
/*! \def LOG_PANIC
|
||||
\brief An alias for LOG_EMERG
|
||||
*/
|
||||
|
||||
/*! \def LOG_ALERT
|
||||
\brief A condition to that should be corrected immediately
|
||||
*/
|
||||
|
||||
/*! \def LOG_CRIT
|
||||
\brief Critical conditions like hard drive errors
|
||||
*/
|
||||
|
||||
/*! \def LOG_ERR
|
||||
\brief Errors
|
||||
*/
|
||||
|
||||
/*! \def LOG_WARNING
|
||||
\brief Warnings
|
||||
*/
|
||||
|
||||
/*! \def LOG_NOTICE
|
||||
\brief Notices, instructions on how to use certain configuration options.
|
||||
*/
|
||||
|
||||
/*! \def LOG_INFO
|
||||
\brief Information, like versions and so.
|
||||
*/
|
||||
|
||||
/*! \def LOG_DEBUG
|
||||
\brief Debug information.
|
||||
*/\
|
||||
|
||||
//! @}
|
||||
|
||||
/*! \def LOG_MASK
|
||||
\brief Converts a priority definition for use in setlogmask()
|
||||
*/
|
||||
Reference in New Issue
Block a user