1 // bootstrap.cxx -- bootstrap routines: main()
3 // Written by Curtis Olson, started May 1997.
5 // Copyright (C) 1997 - 2002 Curtis L. Olson - http://www.flightgear.org/~curt
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 // General Public License for more details.
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28 #if defined(__linux__) && defined(__i386__)
29 # include <fpu_control.h>
36 #include <simgear/compiler.h>
37 #include <simgear/structure/exception.hxx>
38 #include <simgear/debug/logstream.hxx>
45 #include "globals.hxx"
56 # include <console.h> // -dw- for command line dialog
59 // foreward declaration.
62 #if defined(__linux__) && defined(__i386__)
64 static void handleFPE (int);
69 fpu_control_t fpe_flags = 0;
70 _FPU_GETCW(fpe_flags);
71 // fpe_flags &= ~_FPU_MASK_IM; // invalid operation
72 // fpe_flags &= ~_FPU_MASK_DM; // denormalized operand
73 // fpe_flags &= ~_FPU_MASK_ZM; // zero-divide
74 // fpe_flags &= ~_FPU_MASK_OM; // overflow
75 // fpe_flags &= ~_FPU_MASK_UM; // underflow
76 // fpe_flags &= ~_FPU_MASK_PM; // precision (inexact result)
77 _FPU_SETCW(fpe_flags);
78 signal(SIGFPE, handleFPE);
85 SG_LOG(SG_GENERAL, SG_ALERT, "Floating point interrupt (SIGFPE)");
98 short CPSGetCurrentProcess(PSN *psn);
99 short CPSSetProcessName (PSN *psn, char *processname);
100 short CPSEnableForegroundOperation(PSN *psn, int _arg2, int _arg3, int _arg4, int _arg5);
101 short CPSSetFrontProcess(PSN *psn);
104 #define CPSEnableFG(psn) CPSEnableForegroundOperation(psn,0x03,0x3C,0x2C,0x1103)
109 int main ( int argc, char **argv );
110 int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance,
111 LPSTR lpCmdLine, int nCmdShow) {
113 main( __argc, __argv );
119 #include <sys/sysmp.h>
123 * set the special "flush zero" bit (FS, bit 24) in the Control Status
124 * Register of the FPU of R4k and beyond so that the result of any
125 * underflowing operation will be clamped to zero, and no exception of
126 * any kind will be generated on the CPU. This has no effect on an
132 f.fc_word = get_fpc_csr();
133 f.fc_struct.flush = 1;
134 set_fpc_csr(f.fc_word);
138 int _bootstrap_OSInit;
140 // Main entry point; catch any exceptions that have made it this far.
141 int main ( int argc, char **argv ) {
143 _bootstrap_OSInit = 0;
145 // Enable floating-point exceptions for Linux/x86
146 #if defined(__linux__) && defined(__i386__)
153 // Bind all non-rendering threads to CPU1
154 // This will reduce the jitter caused by them to an absolute minimum,
155 // but it will only work with superuser authority.
156 if ( geteuid() == 0 )
158 sysmp(MP_CLOCK, 0); // bind the timer only to CPU0
159 sysmp(MP_ISOLATE, 1 ); // Isolate CPU1
160 sysmp(MP_NONPREEMPTIVE, 1 ); // disable process time slicing on CPU1
164 // Enable floating-point exceptions for Windows
165 #if defined( _MSC_VER ) && defined( DEBUG )
166 // Christian, we should document what this does
167 _control87( _EM_INEXACT, _MCW_EM );
170 #if defined( HAVE_BC5PLUS )
171 _control87(MCW_EM, MCW_EM); /* defined in float.h */
174 // Keyboard focus hack
175 #if defined(__APPLE__) && !defined(OSX_BUNDLE)
179 fgOSInit (&argc, argv);
182 CPSGetCurrentProcess(&psn);
183 CPSSetProcessName(&psn, "FlightGear");
185 CPSSetFrontProcess(&psn);
189 // FIXME: add other, more specific
192 atexit(fgExitCleanup);
193 fgMainInit(argc, argv);
194 } catch (sg_throwable &t) {
195 // We must use cerr rather than
196 // logging, since logging may be
198 cerr << "Fatal error: " << t.getFormattedMessage() << endl;
199 if (!t.getOrigin().empty())
200 cerr << " (received from " << t.getOrigin() << ')' << endl;
203 cerr << "Unknown exception in the main loop. Aborting..." << endl;
204 perror("Possible cause");
210 // do some clean up on exit. Specifically we want to call alutExit()
211 // which happens in the sound manager destructor.
212 void fgExitCleanup() {
214 if (_bootstrap_OSInit != 0)
215 fgSetMouseCursor(MOUSE_CURSOR_POINTER);