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

Unified Diff: src/platform-qnx.cc

Issue 333013002: Check alpha-sorting of includes during presubmit. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 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/platform-posix.cc ('k') | src/platform-solaris.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform-qnx.cc
diff --git a/src/platform-qnx.cc b/src/platform-qnx.cc
index 3c95650f57a3027a27b1a923e23565c4aa737a35..6d72558da1e12c56b1e23b248787d06a07161479 100644
--- a/src/platform-qnx.cc
+++ b/src/platform-qnx.cc
@@ -5,27 +5,27 @@
// Platform-specific code for QNX goes here. For the POSIX-compatible
// parts the implementation is in platform-posix.cc.
+#include <backtrace.h>
#include <pthread.h>
#include <semaphore.h>
#include <signal.h>
-#include <sys/time.h>
+#include <stdlib.h>
#include <sys/resource.h>
+#include <sys/time.h>
#include <sys/types.h>
-#include <stdlib.h>
#include <ucontext.h>
-#include <backtrace.h>
// QNX requires memory pages to be marked as executable.
// Otherwise, the OS raises an exception when executing code in that page.
-#include <sys/types.h> // mmap & munmap
-#include <sys/mman.h> // mmap & munmap
-#include <sys/stat.h> // open
-#include <fcntl.h> // open
-#include <unistd.h> // sysconf
-#include <strings.h> // index
#include <errno.h>
+#include <fcntl.h> // open
#include <stdarg.h>
+#include <strings.h> // index
+#include <sys/mman.h> // mmap & munmap
#include <sys/procfs.h>
+#include <sys/stat.h> // open
+#include <sys/types.h> // mmap & munmap
+#include <unistd.h> // sysconf
#undef MAP_TYPE
« no previous file with comments | « src/platform-posix.cc ('k') | src/platform-solaris.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698