SCOUG-HELP Mailing List Archives
Return to [ 26 |
March |
2004 ]
<< Previous Message <<
>> Next Message >>
Date: | Fri, 26 Mar 2004 04:06:21 PST8PDT,4,1,0,3600,10,-1,0,7200,3600 |
From: | Harry Motin <hmotin@sbcglobal.net > |
Reply-To: | scoug-help@scoug.com |
To: | scoug-help@scoug.com |
Subject: | SCOUG-Help: killing one of several .cmd files |
5
=====================================================
If you are responding to someone asking for help who
may not be a member of this list, be sure to use the
REPLY TO ALL feature of your email program.
=====================================================
Content Type: text/plain
Peter,
By any chance do you have the Rexx Library (supplied by a company called Quercus
Systems). This library has a function, DOSPIDLIST, for identifying all the processes that are running on your computer. Using this function, you can place the following process information into 4 compound variables:
1. A list of process identifiers
2. A list of process names (pathnames)
3. A list of parent process identifiers
4. A list of session identifiers
Therefore, in your Rexx program you identify the desired command file program by its pathname. That pathname exists at a particular position in the second compound variable (maybe its the 10th pathname listed). Then, that process has the ID number contained in the same position (the 10th position in this example), listed by the first compound variable. Finally, using DOSKILLPROCESS from the library you can kill that program by the ID number.
I use the above all the time to identify when a particular program has loaded. My Rexx program loops until the program loads, then it continues forward.
If you go to the Quercus website you might get some information there (unfortunately, I am still without a computer, so I do not have a website URL). Also, I would search Hobbes and the OS/2 BBS for any program, or perhaps a set of Rexx DLL's, that allow you to find and use process ID's. Maybe you will find a free shareware.
HCM
Peter Skye wrote:
=====================================================
If you are responding to someone asking for help who
may not be a member of this list, be sure to use the
REPLY TO ALL feature of your email program.
=====================================================
If I have several .cmd files (AAA.cmd, BBB.cmd etc) and
I "START" them, they all look the same using PSTAT /C.
For example,
START AAA
START BBB
PSTAT /C
show under PSTAT /C as
0C16 002C 2A G:\OS2\CMD.EXE 01 0200 FFFEB413 Block
0C15 002C 27 G:\OS2\CMD.EXE 01 0200 FFFEB410 Block
If I want to kill one of them, I don't know which one to kill.
At last week's SCOUG meeting, "someone" (hi Steven) said there
was a way to START these guys and give your favorite program
killer a way to identify which one to kill. How do I do this?
(Lurkers: I'm running several logging programs remotely
on the SCOUG server. Each of them is a .cmd file. If I
want to stop one of them -- in other words, kill it -- I
need a way to specify which one to stop.)
- Peter
=====================================================
To unsubscribe from this list, send an email message
to "steward@scoug.com". In the body of the message,
put the command "unsubscribe scoug-help".
For problems, contact the list owner at
"rollin@scoug.com".
=====================================================
Content Type: text/html
Peter,
By any chance do you have the Rexx Library (supplied by a company called Quercus Systems). This library has a function, DOSPIDLIST, for identifying all the processes that are running on your computer. Using this function, you can place the following process information into 4 compound variables:
1. A list of process identifiers
2. A list of process names (pathnames)
3. A list of parent process identifiers
4. A list of session identifiers
Therefore, in your Rexx program you identify the desired command file program by its pathname. That pathname exists at a particular position in the second compound variable (maybe its the 10th pathname listed). Then, that process has the ID number contained in the same position (the 10th position in this example), listed by the first compound variable. Finally, using DOSKILLPROCESS from the library you can kill that program by the ID number.
I use the above all the time to identify when a particular program has loaded. My Rexx program loops until the program loads, then it continues forward.
If you go to the Quercus website you might get some information there (unfortunately, I am still without a computer, so I do not have a website URL). Also, I would search Hobbes and the OS/2 BBS for any program, or perhaps a set of Rexx DLL's, that allow you to find and use process ID's. Maybe you will find a free shareware. HCM
Peter Skye <pskye@peterskye.com> wrote:
===================================================== If you are responding to someone asking for help who may not be a member of this list, be sure to use the REPLY TO ALL feature of your email program. =====================================================
If I have several .cmd files (AAA.cmd, BBB.cmd etc) and I "START" them, they all look the same using PSTAT /C.
For example,
START AAA START BBB PSTAT /C
show under PSTAT /C as
0C16 002C 2A G:\OS2\CMD.EXE 01 0200 FFFEB413 Block 0C15 002C 27 G:\OS2\CMD.EXE 01 0200 FFFEB410 Block
If I want to kill one of them, I don't know which one to kill.
At last week's SCOUG meeting, "someone" (hi Steven) said there was a way to START these guys and give your favorite program killer a way to identify which one to kill. How do I do this?
(Lurkers: I'm running
several logging programs remotely on the SCOUG server. Each of them is a .cmd file. If I want to stop one of them -- in other words, kill it -- I need a way to specify which one to stop.)
- Peter
=====================================================
To unsubscribe from this list, send an email message to "steward@scoug.com". In the body of the message, put the command "unsubscribe scoug-help".
For problems, contact the list owner at "rollin@scoug.com".
=====================================================
<< Previous Message <<
>> Next Message >>
Return to [ 26 |
March |
2004 ]
The Southern California OS/2 User Group
P.O. Box 26904
Santa Ana, CA 92799-6904, USA
Copyright 2001 the Southern California OS/2 User Group. ALL RIGHTS
RESERVED.
SCOUG, Warp Expo West, and Warpfest are trademarks of the Southern California OS/2 User Group.
OS/2, Workplace Shell, and IBM are registered trademarks of International
Business Machines Corporation.
All other trademarks remain the property of their respective owners.
|