- Fixed a bug with displaying incorrect temperature values. 
 - Fixed memory leak (temporary failure of dlmalloc). 
 - Small refactoring.
 - Use gnu99 to make empty functions with no return return 0.

git-svn-id: svn://kolibrios.org@9827 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
turbocat
2022-05-31 21:27:08 +00:00
parent 171a745608
commit 4237496c20
5 changed files with 104 additions and 131 deletions

View File

@@ -521,7 +521,7 @@ static inline void __SysMsgBoardStr(char *text)
::"S" (text));
};
static inline void *vzalloc(unsigned long size)
static inline void *KernelZeroAlloc(unsigned long size)
{
void *mem;