tmp/tmpx4a5nnnd/{from.md → to.md}
RENAMED
|
@@ -4,10 +4,13 @@
|
|
| 4 |
static int xalloc();
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* `index` `++`.
|
| 8 |
|
|
|
|
|
|
|
|
|
|
| 9 |
``` cpp
|
| 10 |
long& iword(int idx);
|
| 11 |
```
|
| 12 |
|
| 13 |
*Effects:* If `iarray` is a null pointer, allocates an array of `long`
|
|
|
|
| 4 |
static int xalloc();
|
| 5 |
```
|
| 6 |
|
| 7 |
*Returns:* `index` `++`.
|
| 8 |
|
| 9 |
+
*Remarks:* Concurrent access to this function by multiple threads shall
|
| 10 |
+
not result in a data race ([[intro.multithread]]).
|
| 11 |
+
|
| 12 |
``` cpp
|
| 13 |
long& iword(int idx);
|
| 14 |
```
|
| 15 |
|
| 16 |
*Effects:* If `iarray` is a null pointer, allocates an array of `long`
|