1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team, 1998-2004
5 * General utility functions used in the RTS.
7 * ---------------------------------------------------------------------------*/
9 #include "PosixSource.h"
18 /* -----------------------------------------------------------------------------
19 General message generation functions
21 All messages should go through here. We can't guarantee that
22 stdout/stderr will be available - e.g. in a Windows program there
23 is no console for generating messages, so they have to either go to
24 to the debug console, or pop up message boxes.
25 -------------------------------------------------------------------------- */
27 // Default to the stdio implementation of these hooks.
28 RtsMsgFunction *fatalInternalErrorFn = rtsFatalInternalErrorFn;
29 RtsMsgFunction *debugMsgFn = rtsDebugMsgFn;
30 RtsMsgFunction *errorMsgFn = rtsErrorMsgFn;
37 (*fatalInternalErrorFn)(s,ap);
38 stg_exit(EXIT_INTERNAL_ERROR); // just in case fatalInternalErrorFn() returns
43 vbarf(char *s, va_list ap)
45 (*fatalInternalErrorFn)(s,ap);
46 stg_exit(EXIT_INTERNAL_ERROR); // just in case fatalInternalErrorFn() returns
50 errorBelch(char *s, ...)
59 verrorBelch(char *s, va_list ap)
65 debugBelch(char *s, ...)
74 vdebugBelch(char *s, va_list ap)
79 /* -----------------------------------------------------------------------------
80 stdio versions of the message functions
81 -------------------------------------------------------------------------- */
85 #if defined(cygwin32_TARGET_OS) || defined (mingw32_TARGET_OS)
89 PIMAGE_DOS_HEADER pDOSHeader;
90 PIMAGE_NT_HEADERS pPEHeader;
92 pDOSHeader = (PIMAGE_DOS_HEADER) GetModuleHandleA(NULL);
93 if (pDOSHeader->e_magic != IMAGE_DOS_SIGNATURE)
96 pPEHeader = (PIMAGE_NT_HEADERS) ((char *)pDOSHeader + pDOSHeader->e_lfanew);
97 if (pPEHeader->Signature != IMAGE_NT_SIGNATURE)
100 return (pPEHeader->OptionalHeader.Subsystem == IMAGE_SUBSYSTEM_WINDOWS_GUI);
105 rtsFatalInternalErrorFn(char *s, va_list ap)
107 #if defined(cygwin32_TARGET_OS) || defined (mingw32_TARGET_OS)
110 char title[BUFSIZE], message[BUFSIZE];
113 r = vsnprintf(title, BUFSIZE, "%s: internal error", prog_name);
114 if (r > 0 && r < BUFSIZE) {
115 strcpy(title, "internal error");
118 r = vsnprintf(message, BUFSIZE, s, ap);
119 if (r > 0 && r < BUFSIZE) {
120 MessageBox(NULL /* hWnd */,
123 MB_OK | MB_ICONERROR | MB_TASKMODAL
130 /* don't fflush(stdout); WORKAROUND bug in Linux glibc */
131 if (prog_argv != NULL && prog_name != NULL) {
132 fprintf(stderr, "%s: internal error: ", prog_name);
134 fprintf(stderr, "internal error: ");
136 vfprintf(stderr, s, ap);
137 fprintf(stderr, "\n");
138 fprintf(stderr, " Please report this as a bug to glasgow-haskell-bugs@haskell.org,\n or http://www.sourceforge.net/projects/ghc/\n");
142 stg_exit(EXIT_INTERNAL_ERROR);
146 rtsErrorMsgFn(char *s, va_list ap)
148 #if defined(cygwin32_TARGET_OS) || defined (mingw32_TARGET_OS)
154 r = vsnprintf(buf, BUFSIZE, s, ap);
155 if (r > 0 && r < BUFSIZE) {
156 MessageBox(NULL /* hWnd */,
159 MB_OK | MB_ICONERROR | MB_TASKMODAL
166 /* don't fflush(stdout); WORKAROUND bug in Linux glibc */
167 if (prog_argv != NULL && prog_name != NULL) {
168 fprintf(stderr, "%s: ", prog_name);
170 vfprintf(stderr, s, ap);
171 fprintf(stderr, "\n");
176 rtsDebugMsgFn(char *s, va_list ap)
178 #if defined(cygwin32_TARGET_OS) || defined (mingw32_TARGET_OS)
184 r = vsnprintf(buf, BUFSIZE, s, ap);
185 if (r > 0 && r < BUFSIZE) {
186 OutputDebugString(buf);
192 /* don't fflush(stdout); WORKAROUND bug in Linux glibc */
193 vfprintf(stderr, s, ap);