| OLD | NEW |
| 1 .. include:: /migration/deprecation.inc |
| 2 |
| 1 ============================ | 3 ============================ |
| 2 PNaCl C/C++ Language Support | 4 PNaCl C/C++ Language Support |
| 3 ============================ | 5 ============================ |
| 4 | 6 |
| 5 .. contents:: | 7 .. contents:: |
| 6 :local: | 8 :local: |
| 7 :backlinks: none | 9 :backlinks: none |
| 8 :depth: 3 | 10 :depth: 3 |
| 9 | 11 |
| 10 Source language support | 12 Source language support |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 A similar feature is **thread suspension**: The ability to | 478 A similar feature is **thread suspension**: The ability to |
| 477 asynchronously suspend and resume a thread and inspect or modify its | 479 asynchronously suspend and resume a thread and inspect or modify its |
| 478 execution state (such as register state). | 480 execution state (such as register state). |
| 479 | 481 |
| 480 Neither PNaCl nor NaCl currently support asynchronous interruption | 482 Neither PNaCl nor NaCl currently support asynchronous interruption |
| 481 or suspension of threads. | 483 or suspension of threads. |
| 482 | 484 |
| 483 If PNaCl were to support either of these, the interaction of | 485 If PNaCl were to support either of these, the interaction of |
| 484 ``volatile`` and atomics with same-thread signal handling would need | 486 ``volatile`` and atomics with same-thread signal handling would need |
| 485 to be carefully detailed. | 487 to be carefully detailed. |
| OLD | NEW |