]> git.saurik.com Git - apple/libc.git/blobdiff - stdlib/FreeBSD/atexit.h
Libc-1439.100.3.tar.gz
[apple/libc.git] / stdlib / FreeBSD / atexit.h
index b6aa1839bab5548039ec9d6b231e0df74a787189..608104f1851aa2d018e72bf28f93c90bf3bf64c7 100644 (file)
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in the
  *    documentation and/or other materials provided with the distribution.
- * 3. All advertising materials mentioning features or use of this software
- *    must display the following acknowledgement:
- *     This product includes software developed by the University of
- *     California, Berkeley and its contributors.
  * 4. Neither the name of the University nor the names of its contributors
  *    may be used to endorse or promote products derived from this software
  *    without specific prior written permission.
  * SUCH DAMAGE.
  *
  *     @(#)atexit.h    8.2 (Berkeley) 7/3/94
- * $FreeBSD: src/lib/libc/stdlib/atexit.h,v 1.2 2002/03/22 23:42:03 obrien Exp $
+ * $FreeBSD: src/lib/libc/stdlib/atexit.h,v 1.4 2007/01/09 00:28:09 imp Exp $
  */
 
 /* must be at least 32 to guarantee ANSI conformance */
 #define        ATEXIT_SIZE     32
 
-struct atexit {
-       struct atexit *next;            /* next in list */
-       int ind;                        /* next index in this table */
-       void (*fns[ATEXIT_SIZE])();     /* the table itself */
+struct __cxa_range_t {
+       const void* addr;
+       size_t length;
 };
 
-extern struct atexit *__atexit;        /* points to head of LIFO stack */
+void __cxa_finalize(const void *dso);
+
+void __cxa_finalize_ranges(const struct __cxa_range_t ranges[],
+                                                  unsigned int count);