mirror of
https://git.nju.edu.cn/oslab2023/oslab.git
synced 2024-06-13 04:44:31 +08:00
8 lines
171 B
C
8 lines
171 B
C
#include "klib.h"
|
|
|
|
int abort(const char *file, int line, const char *info) {
|
|
cli();
|
|
printf("Abort @ [%s:%d] %s\n", file, line, info ? info : "");
|
|
while (1) hlt();
|
|
}
|