Skip to content
Snippets Groups Projects
Commit f9487d66 authored by Avi Kivity's avatar Avi Kivity
Browse files

console: name the console thread

parent 2087c993
No related branches found
No related tags found
No related merge requests found
...@@ -278,7 +278,8 @@ struct driver console_driver = { ...@@ -278,7 +278,8 @@ struct driver console_driver = {
void console_init(bool use_vga) void console_init(bool use_vga)
{ {
auto console_poll_thread = new sched::thread(console_poll); auto console_poll_thread = new sched::thread(console_poll,
sched::thread::attr().name("console"));
Console* console; Console* console;
if (use_vga) if (use_vga)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment