X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Flib_freeall.c;h=5bcc974bc2577d27a03990e29273c4467823fa1f;hp=5856dd547cd85f527f70dd4922fcb8fbd13d4b8b;hb=4573ed8af000c7a7907a59ec750da29c46c15498;hpb=7a6bbc8cf41c5186d46accc3d08622dc86526b34 diff --git a/ncurses/base/lib_freeall.c b/ncurses/base/lib_freeall.c index 5856dd54..5bcc974b 100644 --- a/ncurses/base/lib_freeall.c +++ b/ncurses/base/lib_freeall.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 1998-2008,2009 Free Software Foundation, Inc. * + * Copyright (c) 1998-2009,2010 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -31,7 +31,6 @@ ****************************************************************************/ #include -#include #include #if HAVE_NC_FREEALL @@ -40,7 +39,7 @@ extern int malloc_errfd; /* FIXME */ #endif -MODULE_ID("$Id: lib_freeall.c,v 1.56 2009/04/18 17:18:56 tom Exp $") +MODULE_ID("$Id: lib_freeall.c,v 1.59 2010/01/23 17:57:43 tom Exp $") /* * Free all ncurses data. This is used for testing only (there's no practical @@ -66,14 +65,14 @@ NCURSES_SP_NAME(_nc_freeall) (NCURSES_SP_DCL0) if (SP_PARM != 0) { _nc_lock_global(curses); - while (_nc_windows != 0) { + while (WindowList(SP_PARM) != 0) { bool deleted = FALSE; /* Delete only windows that're not a parent */ - for (each_window(p)) { + for (each_window(SP_PARM, p)) { bool found = FALSE; - for (each_window(q)) { + for (each_window(SP_PARM, q)) { if ((p != q) && (q->win._flags & _SUBWIN) && (&(p->win) == q->win._parent)) { @@ -152,12 +151,12 @@ _nc_freeall(void) } NCURSES_EXPORT(void) -NCURSES_SP_NAME(_nc_free_and_exit) (SCREEN *SP_PARM, int code) +NCURSES_SP_NAME(_nc_free_and_exit) (NCURSES_SP_DCLx int code) { if (SP_PARM) { delscreen(SP_PARM); if (SP_PARM->_term) - NCURSES_SP_NAME(_nc_del_curterm) (SP_PARM, SP_PARM->_term); + NCURSES_SP_NAME(del_curterm) (NCURSES_SP_ARGx SP_PARM->_term); } exit(code); }