You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by gr...@apache.org on 2020/03/24 18:22:48 UTC

[mesos] branch master updated: Moved containerizer utils in CMakeLists.

This is an automated email from the ASF dual-hosted git repository.

grag pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 12e5e87  Moved containerizer utils in CMakeLists.
12e5e87 is described below

commit 12e5e870c38681bfc0455960f89a41127dac3daf
Author: Qian Zhang <zh...@gmail.com>
AuthorDate: Tue Mar 24 10:44:39 2020 -0700

    Moved containerizer utils in CMakeLists.
    
    This is to ensure the function `calculateOOMScoreAdj()` can be resolved
    on Windows.
    
    Review: https://reviews.apache.org/r/72263/
---
 src/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 5133550..96cd867 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -176,6 +176,7 @@ set(AGENT_SRC
   slave/containerizer/mesos/launcher_tracker.cpp
   slave/containerizer/mesos/mount.cpp
   slave/containerizer/mesos/paths.cpp
+  slave/containerizer/mesos/utils.cpp
   slave/containerizer/mesos/io/switchboard.cpp
   slave/containerizer/mesos/isolators/environment_secret.cpp
   slave/containerizer/mesos/isolators/filesystem/posix.cpp
@@ -188,7 +189,6 @@ set(AGENT_SRC
 
 if (NOT WIN32)
   list(APPEND AGENT_SRC
-    slave/containerizer/mesos/utils.cpp
     slave/containerizer/mesos/isolators/docker/volume/driver.cpp
     slave/containerizer/mesos/isolators/docker/volume/paths.cpp
     slave/containerizer/mesos/isolators/network/cni/paths.cpp