summaryrefslogtreecommitdiff
path: root/runtime/exec_utils.h
diff options
context:
space:
mode:
author Dmitrii Ishcheikin <ishcheikin@google.com> 2024-01-17 15:10:29 +0000
committer Dmitrii Ishcheikin <ishcheikin@google.com> 2024-01-18 20:31:04 +0000
commit6c267f6b2dd506a668d273acd7fa8a2cdc85b603 (patch)
treee7853e0b77ede3fe0925f1de293502ad224be657 /runtime/exec_utils.h
parent91d4f8cf500a37374cb45151756a476cefa8031f (diff)
Add visibility attributes in runtime/e*
Bug: 260881207 Test: presubmit Test: abtd app_compat_drm Test: abtd app_compat_top_100 Test: abtd app_compat_banking Change-Id: I0eca5c4fd64ec61388eded9b9e066091581e0c7e
Diffstat (limited to 'runtime/exec_utils.h')
-rw-r--r--runtime/exec_utils.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/exec_utils.h b/runtime/exec_utils.h
index e09f285961..8e3e3df15d 100644
--- a/runtime/exec_utils.h
+++ b/runtime/exec_utils.h
@@ -26,8 +26,9 @@
#include <vector>
#include "android-base/unique_fd.h"
+#include "base/macros.h"
-namespace art {
+namespace art HIDDEN {
struct ProcessStat {
// The total wall time, in milliseconds, that the process spent, or 0 if failed to get the value.
@@ -75,7 +76,7 @@ struct ExecResult {
// These spawn child processes using the environment as it was set when the single instance
// of the runtime (Runtime::Current()) was started. If no instance of the runtime was started, it
// will use the current environment settings.
-class ExecUtils {
+class EXPORT ExecUtils {
public:
virtual ~ExecUtils() = default;