hp_panic.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include "heapdef.h"
  14. /* if flag == HA_PANIC_CLOSE then all files are removed for more
  15.    memory */
  16. int heap_panic(enum ha_panic_function flag)
  17. {
  18.   LIST *element,*next_open;
  19.   DBUG_ENTER("heap_panic");
  20.   pthread_mutex_lock(&THR_LOCK_heap);
  21.   for (element=heap_open_list ; element ; element=next_open)
  22.   {
  23.     HP_INFO *info=(HP_INFO*) element->data;
  24.     next_open=element->next; /* Save if close */
  25.     switch (flag) {
  26.     case HA_PANIC_CLOSE:
  27.       hp_close(info);
  28.       break;
  29.     default:
  30.       break;
  31.     }
  32.   }
  33.   for (element=heap_share_list ; element ; element=next_open)
  34.   {
  35.     HP_SHARE *share=(HP_SHARE*) element->data;
  36.     next_open=element->next; /* Save if close */
  37.     switch (flag) {
  38.     case HA_PANIC_CLOSE:
  39.     {
  40.       if (!share->open_count)
  41. hp_free(share);
  42.       break;
  43.     }
  44.     default:
  45.       break;
  46.     }
  47.   }
  48.   pthread_mutex_unlock(&THR_LOCK_heap);
  49.   DBUG_RETURN(0);
  50. } /* heap_panic */