| Index: src/untrusted/nacl/pthread_initialize_minimal.c
|
| diff --git a/src/untrusted/nacl/pthread_initialize_minimal.c b/src/untrusted/nacl/pthread_initialize_minimal.c
|
| index b899b82aab85661f046752adf8f63d25f97cbbcb..f67bf4cba082cc32093461bc86ee63476958bb4d 100644
|
| --- a/src/untrusted/nacl/pthread_initialize_minimal.c
|
| +++ b/src/untrusted/nacl/pthread_initialize_minimal.c
|
| @@ -15,14 +15,6 @@
|
| * It must make it safe for vanilla newlib code to run.
|
| */
|
| int __pthread_initialize_minimal(size_t tdb_size) {
|
| - /*
|
| - * TODO(mcgrathr): This ought to be called by the startup code before
|
| - * this. But there are too many variants of that code that would
|
| - * all need to be changed.
|
| - * See http://code.google.com/p/nativeclient/issues/detail?id=651
|
| - */
|
| - __libnacl_irt_init();
|
| -
|
| /* Adapt size for sbrk. */
|
| /* TODO(robertm): this is somewhat arbitrary - re-examine). */
|
| size_t combined_size = (__nacl_tls_combined_size(tdb_size) + 15) & ~15;
|
|
|