mirror of https://github.com/FDOS/kernel.git
Fixed a typo and disabled fatal()
git-svn-id: https://svn.code.sf.net/p/freedos/svn/kernel/trunk@400 6ac86273-5f31-0410-b378-82cca8765d1b
This commit is contained in:
parent
0cdcac3359
commit
0bd919fdd4
|
@ -44,7 +44,7 @@ static BYTE *RcsId =
|
||||||
|
|
||||||
* Two sources are available:
|
* Two sources are available:
|
||||||
* 1) flag at 40:71 bit 7
|
* 1) flag at 40:71 bit 7
|
||||||
* 2) STDIN str‘am via con_break()
|
* 2) STDIN stream via con_break()
|
||||||
*/
|
*/
|
||||||
int control_break(void)
|
int control_break(void)
|
||||||
{
|
{
|
||||||
|
|
|
@ -64,12 +64,13 @@ VOID fatal(BYTE * err_msg)
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
/* issue an internal error message */
|
/* issue an internal error message */
|
||||||
|
#if 0
|
||||||
VOID fatal(BYTE * err_msg)
|
VOID fatal(BYTE * err_msg)
|
||||||
{
|
{
|
||||||
printf("\nInternal kernel error - \n");
|
printf("\nInternal kernel error - \n");
|
||||||
panic(err_msg);
|
panic(err_msg);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Abort, retry or fail for character devices */
|
/* Abort, retry or fail for character devices */
|
||||||
|
|
Loading…
Reference in New Issue