Shutdown
()
| 1542 | * Shutdown |
| 1543 | */ |
| 1544 | public static void Shutdown() { |
| 1545 | |
| 1546 | if (isdown) { |
| 1547 | System.out.print("recursive shutdown\n"); |
| 1548 | return; |
| 1549 | } |
| 1550 | isdown = true; |
| 1551 | |
| 1552 | WriteConfiguration(); |
| 1553 | |
| 1554 | CDAudio.Shutdown(); |
| 1555 | S.Shutdown(); |
| 1556 | IN.Shutdown(); |
| 1557 | VID.Shutdown(); |
| 1558 | } |
| 1559 | |
| 1560 | /** |
| 1561 | * Initialize client subsystem. |