I use a MacBook Pro. Sometimes I want to pause the execution of a long heavy-duty experiment running on my system because I am on battery or for any other reason. Is there a way to do it in Eclipse ? Or even in Mac OS X itself ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can suspend any process in Mac OS X (or any Unix) using the
killcommand to send theSIGSTOPsignal to the process.Find the process ID (pid) for example we’ll say it’s 9281.
and to resume…
To find the pid, use the
pscommand,ps -awill list all running processes, your process will be ajavainstance running your app.