Files
mckernel/kernel/include/kmsg.h
Masamichi Takagi 5b51eb80a3 Redirect kmsg to /dev/log and detect hungup
1. ihkmond retrieves kmsg when the amount of kmsg exceeds the threashold and
   /dev/mcosX is deleted
2. ihkmond periodically monitors OS status change to detect hungup
2017-09-20 15:25:19 +09:00

21 lines
379 B
C

/**
* \file kmsg.h
* License details are found in the file LICENSE.
* \brief
* Functions of output to McKernel message
* \author Taku Shimosawa <shimosawa@is.s.u-tokyo.ac.jp> \par
* Copyright (C) 2011 - 2012 Taku Shimosawa
*/
/*
* HISTORY:
*/
#ifndef KMSG_H
#define KMSG_H
void kmsg_init(void);
void kputs(char *buf);
int kprintf(const char *format, ...);
#endif