Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re^4: Kill a process in perl windows and proceed only if it killed the process

by Anonymous Monk
on Jul 24, 2012 at 16:01 UTC ( [id://983452]=note: print w/replies, xml ) Need Help??


in reply to Re^3: Kill a process in perl windows and proceed only if it killed the process
in thread Kill a process in perl windows and proceed only if it killed the process

sorry, I didn't understand.
I get the processids of the applications running on a processing node and I just want to kill it and wait for that process to be killed. I am not creating the process using Win32::Process::Create().
  • Comment on Re^4: Kill a process in perl windows and proceed only if it killed the process

Replies are listed 'Best First'.
Re^5: Kill a process in perl windows and proceed only if it killed the process
by BrowserUk (Patriarch) on Jul 24, 2012 at 16:15 UTC
    I am not creating the process using Win32::Process::Create().

    Then you will need to obtain a handle to the process using:

    my $proc = Win32::Process::Open( $pid, $iflags ); Creates a handle Perl can use to an existing process as identified by +$pid.

    And then call the Wait method on that handle:

    $proc->Wait( <milliseconds|INFINITE> );

    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

    The start of some sanity?

      Can I use this syntax: Win32::Process::Open(my $proc, $pid, undef) ?
      I tried the syntax you suggested but gave me the following error
      Usage: Win32::Process::Open(cP, pid, inherit)
        Can I use this syntax: Win32::Process::Open(my $proc, $pid, undef) ?

        Yes.


        With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
        Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
        "Science is about questioning the status quo. Questioning authority".
        In the absence of evidence, opinion is indistinguishable from prejudice.

        The start of some sanity?

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://983452]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (5)
As of 2024-04-23 06:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found