updated to use stuff from local utils
authorReinhard Pfau <Reinhard.Pfau@gmx.de>
Sun, 12 Apr 2009 22:25:07 +0000 (00:25 +0200)
committerReinhard Pfau <Reinhard.Pfau@gmx.de>
Sun, 12 Apr 2009 22:25:07 +0000 (00:25 +0200)
asyncio/async_process.cpp
asyncio/async_process.hpp

index 4ce8a3d..5169b5c 100644 (file)
@@ -37,7 +37,7 @@ on this file might be covered by the GNU General Public License.
 #include <signal.h>
 #include <sys/wait.h>
 
-#include <filefunc.hxx>
+//#include <filefunc.hxx>
 
 
 #ifdef NOISEDEBUG
@@ -395,7 +395,7 @@ bool ProcessImplementation::setWorkDir(const std::string& workdir)
    }
    if (not workdir.empty())
    {
-       I2n::Stat stat(workdir);
+       Utils::FileStat stat(workdir);
        if (not stat or not stat.is_directory())
        {
            return false;
index 29b5346..b0bdf0f 100644 (file)
@@ -32,8 +32,8 @@ on this file might be covered by the GNU General Public License.
 
 #include <sys/types.h>
 
-#include <containerfunc.hpp>
-#include <signalfunc.hpp>
+#include <asyncio_containerfunc.hpp>
+#include <asyncio_signalfunc.hpp>
 #include "async_io.hpp"