diff options
author | 2010-01-16 04:12:04 +0000 | |
---|---|---|
committer | 2010-01-16 04:12:04 +0000 | |
commit | aebc07a8971238b115210e89eca8e7824eca8dbc (patch) | |
tree | a7157331b3813365da7703902380ac6309f5e934 /src/osd/sdl/sdlos_macosx.c | |
parent | f6c832ea90a9c69c95b4006ff328867bb41ebe5c (diff) |
Cleanups and version bump.
Diffstat (limited to 'src/osd/sdl/sdlos_macosx.c')
-rw-r--r-- | src/osd/sdl/sdlos_macosx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/osd/sdl/sdlos_macosx.c b/src/osd/sdl/sdlos_macosx.c index 5ce21f87573..eb6bf195fdc 100644 --- a/src/osd/sdl/sdlos_macosx.c +++ b/src/osd/sdl/sdlos_macosx.c @@ -156,7 +156,7 @@ int osd_num_processors(void) unsigned int count; kern_return_t r; mach_port_t my_mach_host_self; - + count = HOST_BASIC_INFO_COUNT; my_mach_host_self = mach_host_self(); if ( ( r = host_info(my_mach_host_self, HOST_BASIC_INFO, (host_info_t)(&host_basic_info), &count)) == KERN_SUCCESS ) @@ -164,7 +164,7 @@ int osd_num_processors(void) processors = host_basic_info.avail_cpus; } mach_port_deallocate(mach_task_self(), my_mach_host_self); - + return processors; } @@ -200,7 +200,7 @@ void osd_break_into_debugger(const char *message) #ifdef MAME_DEBUG printf("MAME exception: %s\n", message); printf("Attempting to fall into debugger\n"); - kill(getpid(), SIGTRAP); + kill(getpid(), SIGTRAP); #else printf("Ignoring MAME exception: %s\n", message); #endif |