(Child c)
| 114 | } |
| 115 | |
| 116 | public static void join(Child c) throws InterruptedException { |
| 117 | |
| 118 | synchronized (children) { |
| 119 | while(children.contains(c)) { |
| 120 | children.wait(); |
| 121 | } |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | public static void storeHandlers() { |
| 126 | String [] result = Client.getHandlers(); |