brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 1 | #ifndef AOS_CRIO_CRIO_LOGGING_LOGGING_H_ |
| 2 | #define AOS_CRIO_CRIO_LOGGING_LOGGING_H_ |
| 3 | |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 4 | namespace aos { |
| 5 | namespace logging { |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 6 | namespace crio { |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 7 | |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 8 | // Calls AddImplementation to register the usual crio logging implementation |
| 9 | // which sends the messages to the atom. This function will start the task that |
| 10 | // does the actual sending. It relies on a process being running on the atom to |
| 11 | // receive them. |
| 12 | void Register(); |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 13 | |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 14 | } // namespace crio |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 15 | } // namespace logging |
| 16 | } // namespace aos |
| 17 | |
| 18 | #endif // AOS_CRIO_CRIO_LOGGING_LOGGING_H_ |