--- SheepShaver/src/Unix/prefs_unix.cpp 2004/05/09 17:44:17 1.6 +++ SheepShaver/src/Unix/prefs_unix.cpp 2004/05/15 16:36:43 1.7 @@ -40,6 +40,7 @@ prefs_desc platform_prefs_items[] = { #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION {"ignoresegv", TYPE_BOOLEAN, false, "ignore illegal memory accesses"}, #endif + {"idlewait", TYPE_BOOLEAN, false, "sleep when idle"}, {NULL, TYPE_END, false, NULL} // End of list }; @@ -122,4 +123,5 @@ void AddPlatformPrefsDefaults(void) #ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION PrefsAddBool("ignoresegv", false); #endif + PrefsAddBool("idlewait", true); }