Only fsync leveldb's directory when the manifest is being updated.
[chromium-blink-merge.git] / base / process_util_ios.mm
blob4d95a7e00e2273b772f1cd6b85f250d3fee69db7
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/process_util.h"
7 #import <Foundation/Foundation.h>
8 #include <stdio.h>
9 #include <sys/resource.h>
11 #include "base/logging.h"
13 // This is just enough of a shim to let the support needed by test_support
14 // link.  In general, process_util isn't valid on iOS.
16 namespace base {
18 ProcessId GetCurrentProcId() {
19   return getpid();
22 ProcessHandle GetCurrentProcessHandle() {
23   return GetCurrentProcId();
26 void EnableTerminationOnHeapCorruption() {
27   // On iOS, there nothing to do AFAIK.
30 void EnableTerminationOnOutOfMemory() {
31   // iOS provides this for free!
34 void RaiseProcessToHighPriority() {
35   // Impossible on iOS. Do nothing.
38 size_t GetMaxFds() {
39   static const rlim_t kSystemDefaultMaxFds = 256;
40   rlim_t max_fds;
41   struct rlimit nofile;
42   if (getrlimit(RLIMIT_NOFILE, &nofile)) {
43     // Error case: Take a best guess.
44     max_fds = kSystemDefaultMaxFds;
45   } else {
46     max_fds = nofile.rlim_cur;
47   }
49   if (max_fds > INT_MAX)
50     max_fds = INT_MAX;
52   return static_cast<size_t>(max_fds);
55 }  // namespace base