Whats the smartest way to run an application continuously so that it doesn't exit after it hits the bottom? Instead it starts again from the top of main and only exits when commanded. (This is in C)
|
|
|
|
|
|
|
You should always have some way of exiting cleanly. I'd suggest moving the code off to another function that returns a flag to say whether to exit or not.
|
||
|
|
|
|
Most applications that don't fall through enter some kind of event processing loop that allows for event-driven programming. Under Win32 development, for instance, you'd write your WinMain function to continually handle new messages until it receives the WM_QUIT message telling the application to finish. This code typically takes the following form:
If you are writing a game using SDL, you would loop on SDL events until deciding to exit, such as when you detect that the user has hit the Esc key. Some code to do that might resemble the following:
You may also want to read about Unix Daemons and Windows Services. |
|||
|
|
|
|
To elaborate a bit more, you want to put something in that loop that allows you to let the user do repeated actions. Whether it's reading key strokes and performing actions based on the keys pressed, or reading data from the socket and sending back a response. |
||
|
|
|
|
There are a number of ways to "command" your application to exit (such as a global exit flag or return codes). Some have already touched on using an exit code so I'll put forward an easy modification to make to an existing program using an exit flag. Let's assume your program executes a system call to output a directory listing (full directory or a single file):
How do we go about making that loop until an exit condition. The following steps are taken:
This gives the following code:
|
||
|
|
