|
@@ -1,3 +1,19 @@
|
|
|
+{
|
|
|
+ $Id$
|
|
|
+ This file is part of the Free Pascal run time library.
|
|
|
+ Copyright (c) 1999-2000 by Michael Van Canneyt
|
|
|
+
|
|
|
+ Linux specific part of pipe stream.
|
|
|
+
|
|
|
+ See the file COPYING.FPC, included in this distribution,
|
|
|
+ for details about the copyright.
|
|
|
+
|
|
|
+ This program 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.
|
|
|
+
|
|
|
+ **********************************************************************}
|
|
|
+
|
|
|
uses linux;
|
|
|
|
|
|
Function TProcess.GetRunning : Boolean;
|
|
@@ -87,3 +103,10 @@ begin
|
|
|
If ExitStatus=-1 then
|
|
|
Result:=Kill(FHandle,SIGTERM)=0;
|
|
|
end;
|
|
|
+
|
|
|
+{
|
|
|
+ $Log$
|
|
|
+ Revision 1.4 2000-02-15 21:57:51 sg
|
|
|
+ * Added copyright notice and CVS log tags where necessary
|
|
|
+
|
|
|
+}
|