Index: hal/synth/arch/current/ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/hal/synth/arch/current/ChangeLog,v retrieving revision 1.39 diff -u -r1.39 ChangeLog --- hal/synth/arch/current/ChangeLog 7 Oct 2008 09:47:40 -0000 1.39 +++ hal/synth/arch/current/ChangeLog 3 Feb 2009 18:37:41 -0000 @@ -1,3 +1,12 @@ +2008-11-10 Jesper Skov + + * src/synth_intr.c (synth_hardware_init): OS X hack: Disable + bogomips reading for now. + +2008-11-09 Jesper Skov + + * src/synth_entry.c: OS X hack: commented out __dso_handle. + 2008-10-07 Bart Veer * host/ecosynth.tcl: another attempt to fix the X problems when Index: hal/synth/arch/current/src/synth_entry.c =================================================================== RCS file: /cvs/ecos/ecos/packages/hal/synth/arch/current/src/synth_entry.c,v retrieving revision 1.9 diff -u -r1.9 synth_entry.c --- hal/synth/arch/current/src/synth_entry.c 12 Jun 2007 20:06:25 -0000 1.9 +++ hal/synth/arch/current/src/synth_entry.c 3 Feb 2009 18:37:41 -0000 @@ -185,7 +185,7 @@ __cxa_atexit(void (*arg1)(void*), void* arg2, void* arg3) { } -void* __dso_handle = (void*) &__dso_handle; +//void* __dso_handle = (void*) &__dso_handle; // gcc 3.2.2 (approx). The libsupc++ version of the new operator pulls // in exception handling code, even when using the nothrow version and Index: hal/synth/arch/current/src/synth_intr.c =================================================================== RCS file: /cvs/ecos/ecos/packages/hal/synth/arch/current/src/synth_intr.c,v retrieving revision 1.9 diff -u -r1.9 synth_intr.c --- hal/synth/arch/current/src/synth_intr.c 30 Jul 2005 11:10:35 -0000 1.9 +++ hal/synth/arch/current/src/synth_intr.c 3 Feb 2009 18:37:42 -0000 @@ -1328,6 +1328,7 @@ CYG_FAIL("Failed to install signal handler for SIGCHLD"); } +#if 0 // FIXME: Make this an option. // Determine the processor's bogomips rating. This adds some // start-up overhead to all applications, even if HAL_DELAY_US() // is not used. However doing it on demand in the first call @@ -1363,6 +1364,7 @@ CYG_FAIL("Failed to find bogomips entry in /proc/cpuinfo"); } } +#endif // Start up the auxiliary process. synth_start_auxiliary();