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

Side by Side Diff: src/platform-posix.cc

Issue 23497009: Move DumpBacktrace() to checks.cc and cleanup both the code and the necessary platform checks. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 3 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 11 matching lines...) Expand all
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 27
28 // Platform specific code for POSIX goes here. This is not a platform on its 28 // Platform specific code for POSIX goes here. This is not a platform on its
29 // own but contains the parts which are the same across POSIX platforms Linux, 29 // own but contains the parts which are the same across POSIX platforms Linux,
30 // Mac OS, FreeBSD and OpenBSD. 30 // Mac OS, FreeBSD and OpenBSD.
31 31
32 #include "platform-posix.h"
33
34 #include <dlfcn.h> 32 #include <dlfcn.h>
35 #include <pthread.h> 33 #include <pthread.h>
36 #if defined(__DragonFly__) || defined(__FreeBSD__) || defined(__OpenBSD__) 34 #if defined(__DragonFly__) || defined(__FreeBSD__) || defined(__OpenBSD__)
37 #include <pthread_np.h> // for pthread_set_name_np 35 #include <pthread_np.h> // for pthread_set_name_np
38 #endif 36 #endif
39 #include <sched.h> // for sched_yield 37 #include <sched.h> // for sched_yield
40 #include <unistd.h> 38 #include <unistd.h>
41 #include <errno.h> 39 #include <errno.h>
42 #include <time.h> 40 #include <time.h>
43 41
(...skipping 687 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 729
732 void Thread::SetThreadLocal(LocalStorageKey key, void* value) { 730 void Thread::SetThreadLocal(LocalStorageKey key, void* value) {
733 pthread_key_t pthread_key = LocalKeyToPthreadKey(key); 731 pthread_key_t pthread_key = LocalKeyToPthreadKey(key);
734 int result = pthread_setspecific(pthread_key, value); 732 int result = pthread_setspecific(pthread_key, value);
735 ASSERT_EQ(0, result); 733 ASSERT_EQ(0, result);
736 USE(result); 734 USE(result);
737 } 735 }
738 736
739 737
740 } } // namespace v8::internal 738 } } // namespace v8::internal
OLDNEW
« src/platform-posix.h ('K') | « src/platform-posix.h ('k') | src/platform-solaris.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698