OLD | NEW |
| 1 Name: talloc |
| 2 URL: http://talloc.samba.org/talloc/doc/html/index.html |
| 3 |
1 The talloc library is only being used by a portion of the Mesa | 4 The talloc library is only being used by a portion of the Mesa |
2 software renderer, in ../mesa/MesaLib, and is only linked in to the | 5 software renderer, in ../mesa/MesaLib, and is only linked in to the |
3 OSMesa shared library. | 6 OSMesa shared library. |
4 | 7 |
5 This is version 2.0.1 of talloc, with the following modifications (see | 8 This is version 2.0.1 of talloc, with the following modifications (see |
6 chromium.patch): | 9 chromium.patch): |
7 | 10 |
8 - #include "replace.h" was commented out in talloc.c. | 11 - #include "replace.h" was commented out in talloc.c. |
9 - "bool malloced" was changed to "int malloced" in talloc.c. | 12 - "bool malloced" was changed to "int malloced" in talloc.c. |
10 - #include string.h, and conditional #include of stdint.h, were added | 13 - #include string.h, and conditional #include of stdint.h, were added |
11 to talloc.h. | 14 to talloc.h. |
12 - Uses of the "inline" keyword were made conditional and disabled on | 15 - Uses of the "inline" keyword were made conditional and disabled on |
13 Windows. | 16 Windows. |
14 - A "min_size" inline function was used in place of the MIN macro. | 17 - A "min_size" inline function was used in place of the MIN macro. |
15 - An implementation of strnlen was provided for platforms not | 18 - An implementation of strnlen was provided for platforms not |
16 supporting it (in particular, Mac OS X). | 19 supporting it (in particular, Mac OS X). |
17 - A use of ssize_t was changed to size_t on Windows. | 20 - A use of ssize_t was changed to size_t on Windows. |
OLD | NEW |