Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(226)

Unified Diff: src/untrusted/nacl/pthread_initialize_minimal.c

Issue 7276050: Change startup ABI for untrusted code to be C-compatible (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: disable bogus stack_frame.cc test for now Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/untrusted/nacl/nacl_startup.h ('k') | src/untrusted/nacl/start.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « src/untrusted/nacl/nacl_startup.h ('k') | src/untrusted/nacl/start.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698