HomeSort by relevance Sort by last modified time
    Searched refs:ATEXIT (Results 1 - 2 of 2) sorted by null

  /external/bluetooth/glib/glib/
gutils.h 265 /* we try to provide a useful equivalent for ATEXIT if it is
270 #ifndef ATEXIT
271 # define ATEXIT(proc) g_ATEXIT(proc)
274 #endif /* ATEXIT */
275 /* we use a GLib function as a replacement for ATEXIT, so
283 /* It's a bad idea to wrap atexit() on Windows. If the GLib DLL calls
284 * atexit(), the function will be called when the GLib DLL is detached
289 int atexit (void (*)(void));
290 #define g_atexit(func) atexit(func)
gutils.c 289 * macro that maps to a call to the atexit() function in the C
291 * i.e. atexit(), is in a DLL, the function will be called when the
297 * The behaviour of atexit() in the context of dynamically loaded
300 * On POSIX systems, calling g_atexit() (or atexit()) in a dynamically
304 * Some POSIX systems implement atexit() like Windows, and have each
305 * dynamically loaded module maintain an own atexit chain that is
309 * unloaded, the registered atexit functions (if any) residing in that
314 * calling g_atexit() (or atexit()) except in the main executable of a
326 result = ATEXIT (func);
331 result = !atexit ((void (*)(void)) func)
    [all...]

Completed in 71 milliseconds