| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_LINUX_UTIL_H_ | 5 #ifndef BASE_LINUX_UTIL_H_ |
| 6 #define BASE_LINUX_UTIL_H_ | 6 #define BASE_LINUX_UTIL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 #include <sys/types.h> | 10 #include <sys/types.h> |
| 11 | 11 |
| 12 #include <string> | 12 #include <string> |
| 13 | 13 |
| 14 #include "base/base_export.h" | 14 #include "base/base_export.h" |
| 15 | 15 |
| 16 namespace base { | 16 namespace base { |
| 17 | 17 |
| 18 static const char kFindInodeSwitch[] = "--find-inode"; | 18 static const char kFindInodeSwitch[] = "--find-inode"; |
| 19 | 19 |
| 20 // This should be kept in sync with sandbox/linux/suid/sandbox.c | 20 // This should be kept in sync with sandbox/linux/suid/sandbox.c |
| 21 static const long kSUIDSandboxApiNumber = 0; | 21 static const long kSUIDSandboxApiNumber = 1; |
| 22 static const char kSandboxEnvironmentApiRequest[] = "SBX_CHROME_API_RQ"; | 22 static const char kSandboxEnvironmentApiRequest[] = "SBX_CHROME_API_RQ"; |
| 23 static const char kSandboxEnvironmentApiProvides[] = "SBX_CHROME_API_PRV"; | 23 static const char kSandboxEnvironmentApiProvides[] = "SBX_CHROME_API_PRV"; |
| 24 | 24 |
| 25 // This is declared here so the crash reporter can access the memory directly | 25 // This is declared here so the crash reporter can access the memory directly |
| 26 // in compromised context without going through the standard library. | 26 // in compromised context without going through the standard library. |
| 27 BASE_EXPORT extern char g_linux_distro[]; | 27 BASE_EXPORT extern char g_linux_distro[]; |
| 28 | 28 |
| 29 // Get the Linux Distro if we can, or return "Unknown". | 29 // Get the Linux Distro if we can, or return "Unknown". |
| 30 BASE_EXPORT std::string GetLinuxDistro(); | 30 BASE_EXPORT std::string GetLinuxDistro(); |
| 31 | 31 |
| (...skipping 12 matching lines...) Expand all Loading... |
| 44 // |expected_data|, where N is the length of |expected_data|. | 44 // |expected_data|, where N is the length of |expected_data|. |
| 45 // Returns the thread id or -1 on error. If |syscall_supported| is | 45 // Returns the thread id or -1 on error. If |syscall_supported| is |
| 46 // set to false the kernel does not support syscall in procfs. | 46 // set to false the kernel does not support syscall in procfs. |
| 47 BASE_EXPORT pid_t FindThreadIDWithSyscall(pid_t pid, | 47 BASE_EXPORT pid_t FindThreadIDWithSyscall(pid_t pid, |
| 48 const std::string& expected_data, | 48 const std::string& expected_data, |
| 49 bool* syscall_supported); | 49 bool* syscall_supported); |
| 50 | 50 |
| 51 } // namespace base | 51 } // namespace base |
| 52 | 52 |
| 53 #endif // BASE_LINUX_UTIL_H_ | 53 #endif // BASE_LINUX_UTIL_H_ |
| OLD | NEW |