mtkernel_3/include/tm/tmonitor.h | bare source | permlink (0.00 seconds) |
1: /* 2: *---------------------------------------------------------------------- 3: * micro T-Kernel 3.00.00 4: * 5: * Copyright (C) 2006-2019 by Ken Sakamura. 6: * This software is distributed under the T-License 2.1. 7: *---------------------------------------------------------------------- 8: * 9: * Released by TRON Forum(http://www.tron.org) at 2019/12/11. 10: * 11: *---------------------------------------------------------------------- 12: */ 13: 14: /* 15: * tmonitor.h 16: * 17: * T-Monitor compatible calls 18: */ 19: 20: #ifndef __TM_TMONITOR_H__ 21: #define __TM_TMONITOR_H__ 22: 23: #include <sys/machine.h> 24: #include <tk/typedef.h> 25: 26: 27: IMPORT void libtm_init(void); 28: 29: /* 30: * Monitor service function 31: */ 32: IMPORT INT tm_getchar( INT wait ); 33: IMPORT INT tm_putchar( INT c ); 34: IMPORT INT tm_getline( UB *buff ); 35: IMPORT INT tm_putstring( const UB *buff ); 36: IMPORT INT tm_printf( const UB *format, ... ); 37: IMPORT INT tm_sprintf( UB *str, const UB *format, ... ); 38: 39: #endif /* __TM_TMONITOR_H__ */