Tagged Questions
The atexit tag has no wiki summary.
10
votes
1answer
591 views
dlclose does not call destructor
plugin1.cpp:
#include <iostream>
static class TestStatic {
public:
TestStatic() {
std::cout << "TestStatic create" << std::endl;
}
~TestStatic() {
std::cout ...
7
votes
2answers
161 views
How can I register a function to be called only on *successful* exit of my Python program?
I want to run a task when my Python program finishes, but only if it finishes successfully. As far as I know, using the atexit module means that my registered fucntion will always be run at program ...
7
votes
8answers
1k views
Freeing in an atexit()
Is there any point to freeing memory in an atexit() function?
I have a global variable that gets malloc'ed after startup. I could write an atexit() function to free it, but isn't the system going to ...
5
votes
5answers
562 views
Is this the definitive ref counted Objective C singleton implementation?
Here is what I have concocted, after poring over the singleton literature.
Have I forgotten anything?
@implementation MySingleton
static MySingleton *mySharedInstance = nil;
//called by atexit on ...
4
votes
1answer
1k views
Python Process won't call atexit
I'm trying to use atexit in a Process, but unfortunately it doesn't seem to work. Here's some example code:
import time
import atexit
import logging
import multiprocessing
...
4
votes
2answers
396 views
Can I undo or remove an atexit command?
If I place atexit( fn ); on the exit stack, it will get executed when the program exits: returns from main() or via exit().
Can I remove it from the stack?
Why do I want to do this, you ask?
I was ...
4
votes
2answers
1k views
Python Multiprocessing atexit Error “Error in atexit._run_exitfuncs”
I am trying to run a simple multiple processes application in Python. The main thread spawns 1 to N processes and waits until they all done processing. The processes each run an infinite loop, so they ...
3
votes
3answers
108 views
Passing values to atexit
I want to push a series of clean up functions as they are needed. I was using atexit to do this for one cleanup function without any parameters, but I am not sure how to expand this approach to more ...
3
votes
1answer
890 views
Mixed-mode C++/CLI crashing: heap corruption in atexit (static destructor registration)
I am working on deploying a program and the codebase is a mixture of C++/CLI and C#. The C++/CLI comes in all flavors: native, mixed (/clr), and safe (/clr:safe). In my development environment I ...
3
votes
3answers
445 views
python 2.6.x theading / signals /atexit fail on some versions?
I've seen a lot of questions related to this... but my code works on python 2.6.2 and fails to work on python 2.6.5. Am I wrong in thinking that the whole atexit "functions registered via this module ...
2
votes
2answers
3k views
ruby at_exit exit status
Can i determine selves process exit status in at_exit block?
at_exit do
if this_process_status.success?
print 'Success'
else
print 'Failure'
end
end
2
votes
3answers
1k views
WSACleanup and atExit
Is it okay to register WSACleanup through atExit function ? We have several applications that can terminate at different points in the code so we would like to avoid putting WSACleanup everywhere ...
1
vote
1answer
23 views
getting the error traceback in a registered atexit function
I am trying to log the error that caused my process to shut down, but traceback.print_tb and traceback.print_exc don't seem to realize what the raised error is.
In other words, why does the following ...
1
vote
2answers
55 views
Retrieve references to functions registered via atexit()
For functions registered using atexit(): Is it possible to retrieve references to them, to call them directly?
Although this is meant as a general question, solutions regarding the use of gcc/glibc ...
1
vote
0answers
109 views
Mixed-mode C++/CLI DLL throws exception on exit
I am having a problem with a C++/CLI mixed mode DLL that I created. It is throwing an exception when unloading as the .NET application that uses it exits. After DLL_PROCESS_DETACH is executed, the ...
1
vote
2answers
187 views
Function registered with atexit() not getting called
Is it guaranteed that a function registered with atexit will ALWAYS be called upon normal program termination? (I encounterd a scenario in FreeBSD where a function that I register with atexit never ...
1
vote
5answers
285 views
python: closures and classes
I need to register an atexit function for use with a class (see Foo below for an example) that, unfortunately, I have no direct way of cleaning up via a method call: other code, that I don't have ...
1
vote
2answers
151 views
Alternative to python atexit module that works when called from other scripts
Using atexit.register(function) to register a function to be called when your python script exits is a common practice.
The problem is that I identified a case when this fails in an ugly way: if your ...
1
vote
1answer
125 views
Referencing other modules in atexit
I have a function that is responsible for killing a child process when the program ends:
class MySingleton:
def __init__(self):
import atexit
atexit.register(self.stop)
def ...
1
vote
2answers
121 views
In C, missing link between “Main process ends” to “call any functions registered with atexit”
In C, when the main process ends -- how does it know to call any functions registered with atexit()?
I understand how atexit() works, but I don't understand the communication between "Main process ...
1
vote
6answers
471 views
How can I schedule some code to run after all '_atexit()' functions are completed
I'm writing a memory tracking system and the only problem I've actually run into is that when the application exits, any static/global classes that didn't allocate in their constructor, but are ...
1
vote
1answer
192 views
How can you ensure registered atexit function will run with AppHelper.runEventLoop() in PyObjC?
I'm just wondering why I my registered an atexit function... e.g.
import atexit
atexit.register(somefunc)
...
AppHelper.runEventLoop()
Of course I know when will atexit won't work. When I comment ...
1
vote
3answers
378 views
Is registered atexit handler inherited by spawned child processes?
I am writing a daemon program using python 2.5. In the main process an exit handler is registered with atexit module, it seems that the handler gets called when each child process ends, which is not ...
0
votes
0answers
20 views
referencing other modules function in axexit
I am trying to either save dict(dictionary type) in IMDB_cashe class or save whole IMDB_class when exit. However it seems __save_cashe function is not invoked when exit.
I know any function wont be ...
0
votes
1answer
43 views
vfork() atexit assertion failed
I am trying to understand the following piece of code
#include<stdio.h>
#include<unistd.h>
#include<sys/types.h>
int main()
{
pid_t pid ;
unsigned int i=0;
pid=vfork();
...
0
votes
4answers
83 views
Execv register issue at atexit()
"No functions registered by atexit() in the calling process image are registered in the new process image".
Here is code:
pid = fork();
if (pid == 0) {
atexit(check_mem);
return execv(...);
...
0
votes
1answer
49 views
How can I call a routine automatically when the run ends in specman?
Is there any way to specify that a function should be called when a test ends in Specman?
I'm looking for something similar to C's atexit().