source: bootcd/isolinux/syslinux-6.03/gnu-efi/gnu-efi-3.0/lib/debug.c @ 26ffad7

Last change on this file since 26ffad7 was e16e8f2, checked in by Edwin Eefting <edwin@datux.nl>, 3 years ago

bootstuff

  • Property mode set to 100644
File size: 444 bytes
Line 
1/*++
2
3Copyright (c) 1998  Intel Corporation
4
5Module Name:
6
7    debug.c
8
9Abstract:
10
11    Debug library functions
12
13
14
15Revision History
16
17--*/
18
19#include "lib.h"
20
21
22
23//
24// Declare runtime functions
25//
26
27//
28//
29//
30
31INTN
32DbgAssert (
33    IN CHAR8    *FileName,
34    IN INTN     LineNo,
35    IN CHAR8    *Description
36    )
37{
38    DbgPrint (D_ERROR, (CHAR8 *)"%EASSERT FAILED: %a(%d): %a%N\n", FileName, LineNo, Description);
39
40    BREAKPOINT();
41    return 0;
42}
43
Note: See TracBrowser for help on using the repository browser.