From e9c8b0b6694ccf3f9e5161f6e4dcbffe54af12d9 Mon Sep 17 00:00:00 2001 From: Jonas 'Sortie' Termansen Date: Sat, 22 Sep 2012 20:43:02 +0200 Subject: [PATCH] Replace with . --- libmaxsi/include/libmaxsi/process.h | 39 ----------------------------- libmaxsi/process.cpp | 1 - libmaxsi/signal.cpp | 1 - 3 files changed, 41 deletions(-) delete mode 100644 libmaxsi/include/libmaxsi/process.h diff --git a/libmaxsi/include/libmaxsi/process.h b/libmaxsi/include/libmaxsi/process.h deleted file mode 100644 index 25519336..00000000 --- a/libmaxsi/include/libmaxsi/process.h +++ /dev/null @@ -1,39 +0,0 @@ -/******************************************************************************* - - Copyright(C) Jonas 'Sortie' Termansen 2011, 2012. - - This file is part of LibMaxsi. - - LibMaxsi is free software: you can redistribute it and/or modify it under - the terms of the GNU Lesser General Public License as published by the Free - Software Foundation, either version 3 of the License, or (at your option) - any later version. - - LibMaxsi is distributed in the hope that it will be useful, but WITHOUT ANY - WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more - details. - - You should have received a copy of the GNU Lesser General Public License - along with LibMaxsi. If not, see . - - process.h - Exposes system calls for process creation and management. - -*******************************************************************************/ - -#ifndef LIBMAXSI_PROCESS_H -#define LIBMAXSI_PROCESS_H - -namespace Maxsi -{ - namespace Process - { - pid_t Fork(); - pid_t GetPID(); - pid_t GetParentPID(); - } -} - -#endif - diff --git a/libmaxsi/process.cpp b/libmaxsi/process.cpp index 7d8c49bb..6f580d46 100644 --- a/libmaxsi/process.cpp +++ b/libmaxsi/process.cpp @@ -24,7 +24,6 @@ #define _WANT_ENVIRON #include -#include #include #include #include diff --git a/libmaxsi/signal.cpp b/libmaxsi/signal.cpp index 48c29aab..7c33abb4 100644 --- a/libmaxsi/signal.cpp +++ b/libmaxsi/signal.cpp @@ -23,7 +23,6 @@ *******************************************************************************/ #include -#include #include #include #include