Spinning pinwheel

The animated icon shown at three times normal size

The rainbow wheel is a pointer in Apple's Mac OS X that indicates an application is not responding to system events.[1]

The icon has also been referred to as the spinning beach ball or, unofficially, the Spinning Beach Ball of Death, the Spinning Pizza of Death (frequently encountered across Mac users forums as The SPOD), the Marble of Doom, or the Pinwheel of Death.[2][3] The OS X Human Interface Guidelines officially refers to it as the spinning wait cursor,[4] noting also that the developer term cursor is equivalent to the user term pointer.[4]

History

A wristwatch was the first wait cursor in early versions of Mac OS. Apple's HyperCard first popularized animated cursors, including a black and white spinning quartered circle resembling a beach ball. The cursors could be advanced by repeated HyperTalk invocations of "set cursor to busy". The beach ball cursor was also adopted to indicate running script code in the HyperTalk-like AppleScript.

These cursors would be activated by an application when it was performing a lengthy operation. (Microsoft Windows would later adopt the Apple Lisa hourglass for the same concept.) Some versions of the Apple Installer used an animated "counting hand" cursor; other applications provided their own theme-appropriate custom cursors, such as a revolving Yin Yang symbol, Fetch's running dog, Retrospect's spinning tape, and Pro Tools' tapping fingers. Apple provided standard interfaces for animating cursors: originally the Cursor Utilities (SpinCursor, RotateCursor)[5] and, in Mac OS 8 and later, the Appearance Manager (SetAnimatedThemeCursor).[6]

In Mac OS X, Apple used the NeXTSTEP rainbow-colored spinning optical disk cursor. In OS X 10.0 and 10.1, the cursor had a two dimensional appearance, essentially unchanged from NeXT. Mac OS X 10.2 gave the cursor a glossy rounded "gumdrop" look in keeping with other OS X interface elements.[7] The presence of preemptive multitasking under OS X changed the cursor's meaning. Rather than being an indication that an application was performing an action it expected to take a while, it meant that the system software had noticed that an application had stopped responding to events. This could indicate that the application was in an infinite loop, or just performing a lengthy operation and ignoring events.

System usage

Each application has an event queue that receives events from the operating system (for example key presses and mouse button clicks). If an application takes longer than 2 seconds[8] to process the events in its event queue (regardless of the exact cause) the operating system displays the wait cursor whenever the cursor hovers over that application's windows.

This is meant to indicate that the application is temporarily unresponsive, a state from which the application may recover, however it may also indicate that the application has entered an unrecoverable state. This prevents the user from closing, resizing, or even minimizing the windows of that application. Users can choose to terminate an unresponsive application, by using "Force Quit" under the Apple menu, the keystroke command-option-escape, or the Force Quit command found by control-clicking (or right-clicking) the icon of an unresponsive application in the Dock.

While one application is unresponsive, typically other applications are usable in the meantime.

Guidelines, tools and methods for developers

Apple's guidelines suggest that developers try to avoid the spinning wait cursor, and suggest other user interface indicators, such as an asynchronous progress indicator.

Possible causes include:

Instruments is an application that comes with the Mac OS X Developer Tools. Along with its other functions, it allows the user to monitor and sample applications that are either not responding or performing a lengthy operation. Each time an application does not respond and the spinning wait cursor is activated, Instruments can sample the process to determine which code is causing the application to stop responding. With this information, the developer can rewrite code to avoid the cursor being activated.

References

  1. "Mini-Tutorial: The dreaded spinning pinwheel; Avoiding unresponsiveness/slow-downs in Mac OS X". CNet. 10 March 2005. Retrieved 16 July 2012.
  2. Swain, Gregory E. (28 May 2010). "Troubleshoot the spinning beach ball". MacWorld. Retrieved 16 July 2012.
  3. Todd, Charlie (9 March 2012). "Spinning Beach Ball of Death". Improv Everywhere. Retrieved 16 July 2012.
  4. 4.0 4.1 "OS X Human Interface Guidelines". Apple, Inc. Retrieved 18 October 2012.
  5. "Using the Cursor Utilities (IM: Im)". Developer.apple.com. Retrieved 2010-04-30.
  6. "SetAnimatedThemeCursor". Developer.apple.com. Retrieved 2010-04-30.
  7. Ars Technica Jaguar review
  8. session_709__whats_new_in_the_filesystem.pdf

External links