Revision: 11440 Author: [email protected] Date: Thu Apr 26 00:45:29 2012 Log: Remove unused variable in src/platform-solaris.cc.
Based on a patch contributed by Heinz Gies <[email protected]> BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10231004 http://code.google.com/p/v8/source/detail?r=11440 Modified: /branches/bleeding_edge/src/platform-solaris.cc ======================================= --- /branches/bleeding_edge/src/platform-solaris.cc Fri Apr 13 07:08:31 2012 +++ /branches/bleeding_edge/src/platform-solaris.cc Thu Apr 26 00:45:29 2012 @@ -487,12 +487,10 @@ void Thread::Start() { - pthread_attr_t* attr_ptr = NULL; pthread_attr_t attr; if (stack_size_ > 0) { pthread_attr_init(&attr); pthread_attr_setstacksize(&attr, static_cast<size_t>(stack_size_)); - attr_ptr = &attr; } pthread_create(&data_->thread_, NULL, ThreadEntry, this); ASSERT(data_->thread_ != kNoThread); -- v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev
