Reviewers: Yang,

Message:
LGTM.

Description:
Remove unused variable in src/platform-solaris.cc.

Based on a patch contributed by Heinz Gies <[email protected]>

BUG=
TEST=


Please review this at http://codereview.chromium.org/10231004/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files:
  M src/platform-solaris.cc


Index: src/platform-solaris.cc
diff --git a/src/platform-solaris.cc b/src/platform-solaris.cc
index 0106e5796b5617ad0b854542566aa3a0fc9e5b64..4248ea214faa9b7d2c23ec4527d668d4ce542e2c 100644
--- a/src/platform-solaris.cc
+++ b/src/platform-solaris.cc
@@ -487,12 +487,10 @@ void Thread::set_name(const char* name) {


 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

Reply via email to