Alarm 1201 on the Apollo Guidance Computer (AGC) is formally known as Executive Overflow. It occurs when the program executive — the AGC's task scheduler — cannot service all its interrupt requests within the time window. The executive fills up. The system responds by dropping the lowest-priority queued tasks to free space for the highest-priority ones. The alarm is a warning, not a failure condition.
During the powered descent phase of the Apollo 11 landing, the Lunar Module's rendezvous radar — which was supposed to be turned off — was sending data to the AGC because its mode switch was inadvertently left in the "on" position. The radar generated continuous interrupts. Combined with the heavy computational load of the descent guidance program (P65), the executive queue overflowed.
At Mission Control in Houston, John Aaron — then a 29-year-old CAPCOM (Capsule Communicator) — recognized the alarms immediately. He had seen them in simulation months earlier and knew their character. He told his team: "Those alarms are fine. Keep going."
The AGC's executive scheduler ran programs at different priority levels. Landing guidance (P65/P60) ran at the highest real-time priority. Housekeeping, telemetry processing, and radar data processing ran at lower priorities. When overflow occurred, the system automatically dropped the lowest-priority pending tasks — preserving the landing program's execution time.
This is the same principle I use in my spreadsheets every single day: hard deadlines get the resources; everything else waits. The AGC didn't have machine learning or cloud compute. It had 4KB of memory and a rigid priority table. And it worked.
We have AI agents that consume teraflops of compute. We have cloud platforms that scale elastically. And yet — when I look at how many systems fail because they try to do everything at once, I see that the AGC's discipline is still worth emulating. The computer didn't crash because it refused to compromise its core mission. It dropped work, reported the drop, and kept landing.
That's the lesson: Know your landing program. Drop everything else.