blob: 3fad750c49678e28a4e96bb2758957c6b0135e59 [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001#ifndef AOS_CRIO_CRIO_LOGGING_LOGGING_H_
2#define AOS_CRIO_CRIO_LOGGING_LOGGING_H_
3
brians343bc112013-02-10 01:53:46 +00004namespace aos {
5namespace logging {
Brian Silvermanf665d692013-02-17 22:11:39 -08006namespace crio {
brians343bc112013-02-10 01:53:46 +00007
Brian Silvermanf665d692013-02-17 22:11:39 -08008// 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.
12void Register();
brians343bc112013-02-10 01:53:46 +000013
Brian Silvermanf665d692013-02-17 22:11:39 -080014} // namespace crio
brians343bc112013-02-10 01:53:46 +000015} // namespace logging
16} // namespace aos
17
18#endif // AOS_CRIO_CRIO_LOGGING_LOGGING_H_