You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by be...@apache.org on 2012/08/07 03:29:05 UTC

svn commit: r1370097 - /incubator/mesos/trunk/src/linux/cgroups.cpp

Author: benh
Date: Tue Aug  7 01:29:04 2012
New Revision: 1370097

URL: http://svn.apache.org/viewvc?rev=1370097&view=rev
Log:
Added an include for fcntl.h to get at O_CLOEXEC.

Modified:
    incubator/mesos/trunk/src/linux/cgroups.cpp

Modified: incubator/mesos/trunk/src/linux/cgroups.cpp
URL: http://svn.apache.org/viewvc/incubator/mesos/trunk/src/linux/cgroups.cpp?rev=1370097&r1=1370096&r2=1370097&view=diff
==============================================================================
--- incubator/mesos/trunk/src/linux/cgroups.cpp (original)
+++ incubator/mesos/trunk/src/linux/cgroups.cpp Tue Aug  7 01:29:04 2012
@@ -17,6 +17,7 @@
  */
 
 #include <errno.h>
+#include <fcntl.h>
 #include <fts.h>
 #include <signal.h>
 #include <unistd.h>