vote up 3 vote down star

From this answer: http://stackoverflow.com/questions/1058797/when-is-a-c-terminate-handler-the-right-thingtm/1058894#1058894

It would be nice to have a list of resources that 'are' and 'are not' automatically cleaned up by the OS when an application quits. In your answer it would be nice if you can specify the OS/resource and preferably a link to some documentaiton (if appropriate).

The obvious one:

Memory: Yes automatically cleaned up. Question. Are there any exceptions?

flag

how about a counter-example to give us an idea of what sort of thing you're after? – skaffman Jun 29 at 20:01
Complex resources. Such as services (A DB for example). – Martin York Jun 29 at 20:41
Services don't typically belong to processes. – Neil Butterworth Jun 29 at 20:49
@Neil: Your point being? A DB connection not properly cleaned up is a potential for data loss. As such it is a resource that should be cleaned up nicely. – Martin York Jun 29 at 21:06
DB connection != DB service. You used the word service first, not me. – Neil Butterworth Jun 29 at 21:14
show 1 more comment

3 Answers

vote up 3 vote down

In Windows, just about anything you can get handle to should be in fact be managed by the OS - that's why you only get a handle. This includes, but is not limited tom the following (list copied from MSDN docs for CloseHandle() API):

Communications device 
Console input 
Console screen buffer 
Event 
File 
File mapping 
Job 
Mailslot 
Mutex 
Named pipe 
Process 
Semaphore 
Socket 
Thread 
Token

All of these should be recovered by the OS when an application closes, though possibly not immediately, depending on their use by other processes.

Other operating systems work in the same way. It's hard to an imagine an OS worth its name (I exclude embedded systems etc.) where this is not the case - resource management is the #1 raison d'etre for an operating system.

link|flag
We can agree tha anything controlled via a handle will be eventually be released by the OS. – Martin York Jun 29 at 20:20
vote up 2 vote down

Temporary files is a good example of something that will not be cleaned up - the handle is released but the file isn't deleted

link|flag
A good point. But temporary files are like outstanding print jobs - the OS simply doesn't have the information to decide whther they should be deleted immediately a process terminatyes. But they will all get reaped/cleared/flushed/deleted at some point. – Neil Butterworth Jun 29 at 20:31
One could argue that everything will eventually be cleaned up. The problem is that untidy resource deallocation can lead to other problems. In this case we may run out of free space in the file system until the files are repeated by a cleaner processes. – Martin York Jun 29 at 20:40
But it's obviously not the case that a process should delete its temporary files (or that the OS should). Consider your word-processor backup files - you don't want to lose them when Word (or whatever) panics. – Neil Butterworth Jun 29 at 20:51
@Neil: You point? It is a resource that is not cleaned automatically up by the OS. Given the opertunity it should have been cleaned up by the app, but was leaked because of a problem. That I believe is the whole point of this discussion. – Martin York Jun 29 at 21:03
What's the use case for temporary files that shouldn't outlive the process? The only (mis)use I see is as a sort of secondary memory -- but you should be relying on your OS' virtual memory management to do that for you. – Joseph Garvin Jun 29 at 21:04
show 1 more comment
vote up 1 vote down

Any exception is a bug - applications can and do crash and do contain leaks. An OS needs to be reliable and not exhaust resources even in the face of poorly written applications. This also applies to non-OS resources. Services that hand out resources to processes need to free those resources when the process exits. If they don't it is a bug that needs to be fixed.

If you're looking for program artifacts which can persist beyond process exit, on Windows you have at least:

  • Registry keys that are created without REG_OPTION_VOLATILE
  • Files created without FILE_FLAG_DELETE_ON_CLOSE
  • Event log entries
  • Paper that was used for print jobs
link|flag
1  
Yes that is the ideal. But not all resources are owned by the OS. – Martin York Jun 29 at 19:58
@Martin - your title says OS resources :) Even then, it is a bug in the component or service that allocated the resource. – Michael Jun 29 at 20:03
Which resources are not owned ultimately by the OS? – Neil Butterworth Jun 29 at 20:06
@Neil - it depends on what you define as OS. Is a COM server running in a separate process that was created by you via CoCreateInstance an OS managed resource? (in this case, the COM subsystem will shut down the server if you exit) – Michael Jun 29 at 20:07
Well, I certainly don't define a COM server as the OS. COM is just a server architecture, in the same way that Apache is. But this is off the point, I feel. – Neil Butterworth Jun 29 at 20:12
show 6 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.