[Groonga-mysql-commit] mroonga/mroonga at f0934d4 [master] mysql57: support PSI_memory_key for my_multi_malloc()

Zurück zum Archiv-Index

Kouhei Sutou null+****@clear*****
Tue Mar 17 21:58:15 JST 2015


Kouhei Sutou	2015-03-17 21:58:15 +0900 (Tue, 17 Mar 2015)

  New Revision: f0934d49b3d847458ff7daae8b612ea555c8688d
  https://github.com/mroonga/mroonga/commit/f0934d49b3d847458ff7daae8b612ea555c8688d

  Message:
    mysql57: support PSI_memory_key for my_multi_malloc()

  Modified files:
    mrn_table.cpp

  Modified: mrn_table.cpp (+3 -3)
===================================================================
--- mrn_table.cpp    2015-03-17 21:57:36 +0900 (824ff5b)
+++ mrn_table.cpp    2015-03-17 21:58:15 +0900 (c925659)
@@ -777,7 +777,7 @@ MRN_LONG_TERM_SHARE *mrn_get_long_term_share(const char *table_name,
                    table_name_length)))
   {
     if (!(long_term_share = (MRN_LONG_TERM_SHARE *)
-      my_multi_malloc(MYF(MY_WME | MY_ZEROFILL),
+      mrn_my_multi_malloc(MYF(MY_WME | MY_ZEROFILL),
         &long_term_share, sizeof(*long_term_share),
         &tmp_name, table_name_length + 1,
         NullS))
@@ -826,7 +826,7 @@ MRN_SHARE *mrn_get_share(const char *table_name, TABLE *table, int *error)
     (uchar*) table_name, length)))
   {
     if (!(share = (MRN_SHARE *)
-      my_multi_malloc(MYF(MY_WME | MY_ZEROFILL),
+      mrn_my_multi_malloc(MYF(MY_WME | MY_ZEROFILL),
         &share, sizeof(*share),
         &tmp_name, length + 1,
         &index_table, sizeof(char *) * table->s->keys,
@@ -1069,7 +1069,7 @@ KEY *mrn_create_key_info_for_table(MRN_SHARE *share, TABLE *table, int *error)
   if (share->wrap_keys)
   {
     if (!(wrap_key_info = (KEY *)
-      my_multi_malloc(MYF(MY_WME | MY_ZEROFILL),
+      mrn_my_multi_malloc(MYF(MY_WME | MY_ZEROFILL),
         &wrap_key_info, sizeof(*wrap_key_info) * share->wrap_keys,
         NullS))
     ) {
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-mysql-commit mailing list
Zurück zum Archiv-Index