summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 00:06:16 +0000
committerrobert.nagy@gmail.com <robert.nagy@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-11-15 00:06:16 +0000
commite37e88a0c9d8cd3a3dba3b4d8e2af0981a325206 (patch)
treeebb143dca4d6fb60cedf92760c3b112e2b9ace32
parent8d96d62d772beae3eda5bef6f2184074651d9c90 (diff)
downloadchromium_src-e37e88a0c9d8cd3a3dba3b4d8e2af0981a325206.zip
chromium_src-e37e88a0c9d8cd3a3dba3b4d8e2af0981a325206.tar.gz
chromium_src-e37e88a0c9d8cd3a3dba3b4d8e2af0981a325206.tar.bz2
define OS_BSD on *BSD and replace the ifdefs to use that
BUG= TEST=compile Review URL: http://codereview.chromium.org/8564020 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@109986 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--base/debug/debugger_posix.cc6
-rw-r--r--base/file_util_posix.cc13
-rw-r--r--base/platform_file_posix.cc5
-rw-r--r--base/time_posix.cc2
-rw-r--r--build/build_config.h16
5 files changed, 23 insertions, 19 deletions
diff --git a/base/debug/debugger_posix.cc b/base/debug/debugger_posix.cc
index 1802dbb..1c7304c 100644
--- a/base/debug/debugger_posix.cc
+++ b/base/debug/debugger_posix.cc
@@ -29,7 +29,7 @@
#include <AvailabilityMacros.h>
#endif
-#if defined(OS_MACOSX) || defined(OS_OPENBSD) || defined(OS_FREEBSD)
+#if defined(OS_MACOSX) || defined(OS_BSD)
#include <sys/sysctl.h>
#endif
@@ -59,7 +59,7 @@ bool SpawnDebuggerOnProcess(unsigned /* process_id */) {
return false;
}
-#if defined(OS_MACOSX) || defined(OS_OPENBSD)
+#if defined(OS_MACOSX) || defined(OS_BSD)
// Based on Apple's recommended method as described in
// http://developer.apple.com/qa/qa2004/qa1361.html
@@ -108,7 +108,7 @@ bool BeingDebugged() {
// This process is being debugged if the P_TRACED flag is set.
is_set = true;
-#if defined(OS_OPENBSD)
+#if defined(OS_BSD)
being_debugged = (info.p_flag & P_TRACED) != 0;
#else
being_debugged = (info.kp_proc.p_flag & P_TRACED) != 0;
diff --git a/base/file_util_posix.cc b/base/file_util_posix.cc
index c365869a..582f70e 100644
--- a/base/file_util_posix.cc
+++ b/base/file_util_posix.cc
@@ -54,9 +54,8 @@ namespace file_util {
namespace {
-#if defined(OS_OPENBSD) || defined(OS_FREEBSD) || \
- (defined(OS_MACOSX) && \
- MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5)
+#if defined(OS_BSD) || (defined(OS_MACOSX) && \
+ MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5)
typedef struct stat stat_wrapper_t;
static int CallStat(const char *path, stat_wrapper_t *sb) {
base::ThreadRestrictions::AssertIOAllowed();
@@ -158,8 +157,8 @@ int CountFilesCreatedAfter(const FilePath& path,
DIR* dir = opendir(path.value().c_str());
if (dir) {
-#if !defined(OS_LINUX) && !defined(OS_MACOSX) && !defined(OS_FREEBSD) && \
- !defined(OS_OPENBSD) && !defined(OS_SOLARIS) && !defined(OS_ANDROID)
+#if !defined(OS_LINUX) && !defined(OS_MACOSX) && !defined(OS_BSD) && \
+ !defined(OS_SOLARIS) && !defined(OS_ANDROID)
#error Port warning: depending on the definition of struct dirent, \
additional space for pathname may be needed
#endif
@@ -801,8 +800,8 @@ bool FileEnumerator::ReadDirectory(std::vector<DirectoryEntryInfo>* entries,
if (!dir)
return false;
-#if !defined(OS_LINUX) && !defined(OS_MACOSX) && !defined(OS_FREEBSD) && \
- !defined(OS_OPENBSD) && !defined(OS_SOLARIS) && !defined(OS_ANDROID)
+#if !defined(OS_LINUX) && !defined(OS_MACOSX) && !defined(OS_BSD) && \
+ !defined(OS_SOLARIS) && !defined(OS_ANDROID)
#error Port warning: depending on the definition of struct dirent, \
additional space for pathname may be needed
#endif
diff --git a/base/platform_file_posix.cc b/base/platform_file_posix.cc
index 3c17c16..b138a67 100644
--- a/base/platform_file_posix.cc
+++ b/base/platform_file_posix.cc
@@ -21,9 +21,8 @@
namespace base {
-#if defined(OS_OPENBSD) || defined(OS_FREEBSD) || \
- (defined(OS_MACOSX) && \
- MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5)
+#if defined(OS_BSD) || (defined(OS_MACOSX) && \
+ MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_5)
typedef struct stat stat_wrapper_t;
static int CallFstat(int fd, stat_wrapper_t *sb) {
base::ThreadRestrictions::AssertIOAllowed();
diff --git a/base/time_posix.cc b/base/time_posix.cc
index 30dd380..79a0b94 100644
--- a/base/time_posix.cc
+++ b/base/time_posix.cc
@@ -171,7 +171,7 @@ Time Time::FromExploded(bool is_local, const Exploded& exploded) {
// FreeBSD 6 has CLOCK_MONOLITHIC but defines _POSIX_MONOTONIC_CLOCK to -1.
#if (defined(OS_POSIX) && \
defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0) || \
- defined(OS_FREEBSD) || defined(OS_OPENBSD) || defined(OS_ANDROID)
+ defined(OS_BSD) || defined(OS_ANDROID)
// static
TimeTicks TimeTicks::Now() {
diff --git a/build/build_config.h b/build/build_config.h
index 3dc75d6..97b0b5a 100644
--- a/build/build_config.h
+++ b/build/build_config.h
@@ -43,15 +43,16 @@
#error Please add support for your platform in build/build_config.h
#endif
-#if defined(OS_LINUX) || defined(OS_FREEBSD) || defined(OS_OPENBSD) || \
- defined(OS_SOLARIS)
-#define USE_X11 1 // Use X for graphics.
-#endif
-
#if defined(USE_OPENSSL) && defined(USE_NSS)
#error Cannot use both OpenSSL and NSS
#endif
+// For access to standard BSD features, use OS_BSD instead of a
+// more specific macro.
+#if defined(OS_FREEBSD) || defined(OS_OPENBSD)
+#define OS_BSD 1
+#endif
+
// For access to standard POSIXish features, use OS_POSIX instead of a
// more specific macro.
#if defined(OS_MACOSX) || defined(OS_LINUX) || defined(OS_FREEBSD) || \
@@ -60,6 +61,11 @@
#define OS_POSIX 1
#endif
+#if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) && \
+ !defined(OS_NACL)
+#define USE_X11 1 // Use X for graphics.
+#endif
+
// Use tcmalloc
#if (defined(OS_WIN) || defined(OS_LINUX)) && !defined(NO_TCMALLOC)
#define USE_TCMALLOC 1