2000-02-17 20:38:33 +01:00
|
|
|
/* assert.cc: Handle the assert macro for WIN32.
|
|
|
|
|
2011-05-01 16:35:12 +02:00
|
|
|
Copyright 1997, 1998, 2000, 2001, 2007, 2008, 2009, 2011 Red Hat, Inc.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
|
|
|
#include "winsup.h"
|
2000-07-27 19:30:51 +02:00
|
|
|
#include <wingdi.h>
|
|
|
|
#include <winuser.h>
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
#include <assert.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
/* This function is called when the assert macro fails. This will
|
|
|
|
override the function of the same name in newlib. */
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
__assert (const char *file, int line, const char *failedexpr)
|
2007-06-27 14:46:35 +02:00
|
|
|
{
|
|
|
|
__assert_func (file, line, NULL, failedexpr);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern "C" void
|
|
|
|
__assert_func (const char *file, int line, const char *func,
|
|
|
|
const char *failedexpr)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
|
|
|
HANDLE h;
|
|
|
|
|
|
|
|
/* If we don't have a console in a Windows program, then bring up a
|
|
|
|
message box for the assertion failure. */
|
|
|
|
|
2011-07-04 17:25:36 +02:00
|
|
|
h = CreateFile ("CONOUT$", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE,
|
|
|
|
&sec_none_nih, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, NULL);
|
2002-09-19 17:12:48 +02:00
|
|
|
if (h == INVALID_HANDLE_VALUE)
|
2000-02-17 20:38:33 +01:00
|
|
|
{
|
2011-05-01 16:35:12 +02:00
|
|
|
PWCHAR buf = (PWCHAR) alloca ((100 + strlen (failedexpr))
|
|
|
|
* sizeof (WCHAR));
|
|
|
|
__small_swprintf (buf,
|
|
|
|
L"Failed assertion\n\t%s\nat line %d of file %s%s%s",
|
|
|
|
failedexpr, line, file,
|
|
|
|
func ? "\nin function " : "", func ? func : "");
|
|
|
|
MessageBoxW (NULL, buf, NULL, MB_OK | MB_ICONERROR | MB_TASKMODAL);
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
CloseHandle (h);
|
2007-06-27 14:46:35 +02:00
|
|
|
small_printf ("assertion \"%s\" failed: file \"%s\", line %d%s%s\n",
|
|
|
|
failedexpr, file, line,
|
|
|
|
func ? ", function: " : "", func ? func : "");
|
2011-11-14 02:29:49 +01:00
|
|
|
debug_printf ("assertion \"%s\" failed: file \"%s\", line %d%s%s",
|
|
|
|
failedexpr, file, line,
|
|
|
|
func ? ", function: " : "", func ? func : "");
|
2000-02-17 20:38:33 +01:00
|
|
|
}
|
|
|
|
|
2002-08-11 21:19:29 +02:00
|
|
|
#ifdef DEBUGGING
|
|
|
|
try_to_debug ();
|
|
|
|
#endif
|
2000-09-03 06:16:35 +02:00
|
|
|
abort (); // FIXME: Someday this should work.
|
2000-02-17 20:38:33 +01:00
|
|
|
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|