mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-05-01 13:14:02 +00:00
cleanup debug folder, only include some necessary header files,doesn't include hypervisor.h Tracked-On: #1842 Signed-off-by: Mingqiang Chi <mingqiang.chi@intel.com> Reviewed-by: Eddie Dong <eddie.dong@intel.com> modified: debug/console.c modified: debug/dbg_cmd.c modified: debug/dump.c modified: debug/hypercall.c modified: debug/logmsg.c modified: debug/npk_log.c modified: debug/printf.c modified: debug/profiling.c modified: debug/sbuf.c modified: debug/shell.c modified: debug/string.c modified: debug/trace.c modified: debug/uart16550.c modified: debug/vuart.c modified: include/debug/console.h modified: include/debug/vuart.h
44 lines
1.0 KiB
C
44 lines
1.0 KiB
C
/*
|
|
* Copyright (C) 2018 Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef CONSOLE_H
|
|
#define CONSOLE_H
|
|
|
|
/* Switching key combinations for shell and uart console */
|
|
#define GUEST_CONSOLE_TO_HV_SWITCH_KEY 0 /* CTRL + SPACE */
|
|
|
|
/** Initializes the console module.
|
|
*
|
|
*/
|
|
void console_init(void);
|
|
|
|
/** Writes a given number of characters to the console.
|
|
*
|
|
* @param s A pointer to character array to write.
|
|
* @param len The number of characters to write.
|
|
*
|
|
* @return The number of characters written or -1 if an error occurred
|
|
* and no character was written.
|
|
*/
|
|
size_t console_write(const char *s, size_t len);
|
|
|
|
/** Writes a single character to the console.
|
|
*
|
|
* @param ch The character to write.
|
|
*
|
|
* @preturn The number of characters written or -1 if an error
|
|
* occurred before any character was written.
|
|
*/
|
|
void console_putc(const char *ch);
|
|
char console_getc(void);
|
|
|
|
void console_setup_timer(void);
|
|
|
|
void suspend_console(void);
|
|
void resume_console(void);
|
|
|
|
#endif /* CONSOLE_H */
|