mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-01 18:39:16 +00:00
refactor(kernel): update debug messages
This commit is contained in:
@ -333,7 +333,7 @@ namespace v0
|
||||
|
||||
void PS2Wait(dev_t DriverID, const bool Output)
|
||||
{
|
||||
dbg_api("%d, %d", DriverID, Output);
|
||||
// dbg_api("%d, %d", DriverID, Output);
|
||||
|
||||
#if defined(__amd64__) || defined(__i386__)
|
||||
int Timeout = 100000;
|
||||
@ -379,7 +379,7 @@ namespace v0
|
||||
|
||||
uint8_t PS2ReadData(dev_t DriverID)
|
||||
{
|
||||
dbg_api("%d", DriverID);
|
||||
// dbg_api("%d", DriverID);
|
||||
|
||||
#if defined(__amd64__) || defined(__i386__)
|
||||
WaitOutput;
|
||||
|
@ -185,17 +185,13 @@ namespace SymbolResolver
|
||||
|
||||
if (strlen(name) == 0)
|
||||
continue;
|
||||
SymbolTable tbl{};
|
||||
SymbolTable tbl;
|
||||
tbl.Address = sym->st_value;
|
||||
tbl.FunctionName = new char[strlen(name) + 1];
|
||||
strcpy(tbl.FunctionName, name);
|
||||
this->SymTable.push_back(tbl);
|
||||
this->SymbolTableExists = true;
|
||||
|
||||
// debug("Symbol %d: %#lx %s(%#lx)",
|
||||
// i, tbl.Address,
|
||||
// tbl.FunctionName,
|
||||
// name);
|
||||
// debug("Symbol %d: %#lx %s(%#lx)", i, tbl.Address, tbl.FunctionName, name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user