1 | /* $Id: assert-r0drv-darwin.cpp 5999 2007-12-07 15:05:06Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * innotek Portable Runtime - Assertion Workers, Ring-0 Drivers, Darwin.
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2007 innotek GmbH
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | *
|
---|
17 | * The contents of this file may alternatively be used under the terms
|
---|
18 | * of the Common Development and Distribution License Version 1.0
|
---|
19 | * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
|
---|
20 | * VirtualBox OSE distribution, in which case the provisions of the
|
---|
21 | * CDDL are applicable instead of those of the GPL.
|
---|
22 | *
|
---|
23 | * You may elect to license modified versions of this file under the
|
---|
24 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
25 | */
|
---|
26 |
|
---|
27 |
|
---|
28 | /*******************************************************************************
|
---|
29 | * Header Files *
|
---|
30 | *******************************************************************************/
|
---|
31 | #include "the-darwin-kernel.h"
|
---|
32 |
|
---|
33 | #include <iprt/assert.h>
|
---|
34 | #include <iprt/log.h>
|
---|
35 | #include <iprt/string.h>
|
---|
36 | #include <iprt/stdarg.h>
|
---|
37 |
|
---|
38 | /*******************************************************************************
|
---|
39 | * Global Variables *
|
---|
40 | *******************************************************************************/
|
---|
41 | /** The last assert message, 1st part. */
|
---|
42 | RTDATADECL(char) g_szRTAssertMsg1[1024];
|
---|
43 | /** The last assert message, 2nd part. */
|
---|
44 | RTDATADECL(char) g_szRTAssertMsg2[2048];
|
---|
45 |
|
---|
46 |
|
---|
47 | RTDECL(void) AssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction)
|
---|
48 | {
|
---|
49 | #ifdef IN_GUEST_R0
|
---|
50 | RTLogBackdoorPrintf("\n!!Assertion Failed!!\n"
|
---|
51 | "Expression: %s\n"
|
---|
52 | "Location : %s(%d) %s\n",
|
---|
53 | pszExpr, pszFile, uLine, pszFunction);
|
---|
54 | #endif
|
---|
55 |
|
---|
56 | printf("\r\n!!Assertion Failed!!\r\n"
|
---|
57 | "Expression: %s\r\n"
|
---|
58 | "Location : %s(%d) %s\r\n",
|
---|
59 | pszExpr, pszFile, uLine, pszFunction);
|
---|
60 |
|
---|
61 | RTStrPrintf(g_szRTAssertMsg1, sizeof(g_szRTAssertMsg1),
|
---|
62 | "\n!!Assertion Failed!!\n"
|
---|
63 | "Expression: %s\n"
|
---|
64 | "Location : %s(%d) %s\n",
|
---|
65 | pszExpr, pszFile, uLine, pszFunction);
|
---|
66 | }
|
---|
67 |
|
---|
68 |
|
---|
69 | RTDECL(void) AssertMsg2(const char *pszFormat, ...)
|
---|
70 | {
|
---|
71 | va_list va;
|
---|
72 | char szMsg[256];
|
---|
73 |
|
---|
74 | #ifdef IN_GUEST_R0
|
---|
75 | va_start(va, pszFormat);
|
---|
76 | RTLogBackdoorPrintfV(pszFormat, va);
|
---|
77 | va_end(va);
|
---|
78 | #endif
|
---|
79 |
|
---|
80 | va_start(va, pszFormat);
|
---|
81 | RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va);
|
---|
82 | szMsg[sizeof(szMsg) - 1] = '\0';
|
---|
83 | va_end(va);
|
---|
84 | printf("%s", szMsg);
|
---|
85 |
|
---|
86 | va_start(va, pszFormat);
|
---|
87 | RTStrPrintfV(g_szRTAssertMsg2, sizeof(g_szRTAssertMsg2), pszFormat, va);
|
---|
88 | va_end(va);
|
---|
89 |
|
---|
90 | panic("%s%s", g_szRTAssertMsg1, g_szRTAssertMsg2);
|
---|
91 | }
|
---|
92 |
|
---|