[BACK]Return to monitor_mm.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/Attic/monitor_mm.c between version 1.5 and 1.6

version 1.5, 2002/05/28 16:45:27 version 1.6, 2002/06/04 23:05:49
Line 139 
Line 139 
   
         address = mm_malloc(mm, size);          address = mm_malloc(mm, size);
         if (address == NULL)          if (address == NULL)
                 fatal("%s: mm_malloc(%lu)", __FUNCTION__, (u_long)size);                  fatal("%s: mm_malloc(%lu)", __func__, (u_long)size);
         return (address);          return (address);
 }  }
   
Line 288 
Line 288 
         struct mm_master *mmold;          struct mm_master *mmold;
         struct mmtree rb_free, rb_allocated;          struct mmtree rb_free, rb_allocated;
   
         debug3("%s: Share sync", __FUNCTION__);          debug3("%s: Share sync", __func__);
   
         mm = *pmm;          mm = *pmm;
         mmold = mm->mmalloc;          mmold = mm->mmalloc;
Line 313 
Line 313 
         *pmm = mm;          *pmm = mm;
         *pmmalloc = mmalloc;          *pmmalloc = mmalloc;
   
         debug3("%s: Share sync end", __FUNCTION__);          debug3("%s: Share sync end", __func__);
 }  }
   
 void  void

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6