Tagged Questions
The halt tag has no wiki summary.
12
votes
4answers
7k views
Possible to abort shutdown on Linux? [closed]
I'm familiar with and use shutdown in Linux, and typically just do
> shutdown -h now
But is there a way to stop shutdown from happening, say if I aim to shutdown 10 minutes from now and then in ...
4
votes
4answers
419 views
How to return an error code with Halt(n) from an Exception block with D2007?
Update: It seems to be specific to D2007. It works in D2010 like it worked in older version.
I would like to return an exit code depending on the type of Exception caught in the Eception Handler ...
4
votes
9answers
653 views
How do I write a program that tells when my other program ends?
How do I write a program that tells when my other program ends?
3
votes
4answers
201 views
Source code of the “halt” tool?
Can anyone link up the source of the halt tool? It is a binary usually located in /sbin which shuts down the system. I did some search and I couldn't find it anywhere.
3
votes
4answers
4k views
Pause execution of a method without locking GUI. C#
I'm working on a card game in C# for a project on my Intro to OOP paper and have got the game working now but am adding "flair" to the GUI.
Currently cards are dealt and appear on the UI ...
1
vote
2answers
150 views
jQuery Halt Form Submit
I've just put together a nice form which has taken me hours, with some natty jQuery focusout validation. The focusout attribute is attached to the input fields onload. I then re-use my validation ...
0
votes
0answers
30 views
Android What does halt() do on an MMAdView (Millenial Media Ads)?
I can't find a decent api for Millenial Media Android SDK that says what halt() does. I'm having some memory leak issues that seem to be stemming from MMAdViews. I've found ...
0
votes
2answers
111 views
My android app should suspend activity when not on screen
An android app that I'm writing seems to consume a lot of battery even when it's not the foreground application. My assumption is that I need to unregister the listeners for gps, orientation, etc., ...
0
votes
1answer
68 views
Is there any way to stop object method execution from another method?
Situation is as follows:
There is a separate object that is responsible for generating page content, we can call it Content. Another object is its' parent - Core object.
Content object calls Core ...
0
votes
4answers
72 views
Java: Halting Program Without Input Prompt
As many of you may know, when you have a while loop (or any loop for that matter) when an input method is called, the program stops and waits for input.
e.g.
while {
String input = ...
0
votes
1answer
194 views
How to run a command just after shutdown or halt in Debian?
I'm working with an embedded computer that has a Debian on it. I already manage to run a command just before it has booted and play the "bell" to tell that is ready to work, and for example try to ...
0
votes
3answers
256 views
Continue SQL query even on errors
I'm using MySQL workbench to import a Joomla sample_data.sql file into my local database. I want it to continue importing, even if an error occurs, by skipping the line that caused the error.
Is ...
0
votes
0answers
71 views
Running Prolog Sicstus through a shell file
I've been trying to run a file through a shell script and write its output into that file.
The script is very simple:
/usr/local/sicstus4.1.1/bin/sicstus -l run --goal ...
0
votes
3answers
327 views
Problem with downloads: slow and/or fails
I have the following script to let a visitor download a file:
header( 'Content-Type: application/octet-stream' );
header( 'Content-Transfer-Encoding: binary' );
header( 'Content-Disposition: ...
0
votes
0answers
262 views
WPF DoDragDrop causes control animation to halt
Here's the scenario (simplified): I have a control (let's say, a Rectangle) on the Window. I hooked the MouseMove event to make it initiate a drag&drop. Then in the MouseDown event I let it ...
0
votes
3answers
262 views
Calling sleep on current thread stalls my main GUI
I have one class DataThread inherited from Thread.
I am using two DataThread objects ReadThread and WriteThread.
I have another thread where Main_GUI is running.
Now when I press a button on main_GUI ...
0
votes
2answers
147 views
Getting a Process to terminate
I have a process object setup like the following:
Process p = new Process();
p.StartInfo.FileName = command;
p.StartInfo.UseShellExecute = true;
p.StartInfo.Arguments = String.Format(
...