mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-03-11 18:33:18 +01:00
Copy all elements of the allocations[] array, including the last. (Pointed
Sun Feb 7 21:56:00 1999 Owen Taylor <otaylor@redhat.com> * gmem.c (g_mem_profile): Copy all elements of the allocations[] array, including the last. (Pointed out by "Matthew W. Samsonoff" <mws7323@osfmail.isc.rit.edu>)
This commit is contained in:
parent
28500009d4
commit
9071de6fdc
@ -1,3 +1,9 @@
|
||||
Sun Feb 7 21:56:00 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gmem.c (g_mem_profile): Copy all elements
|
||||
of the allocations[] array, including the last.
|
||||
(Pointed out by "Matthew W. Samsonoff" <mws7323@osfmail.isc.rit.edu>)
|
||||
|
||||
1999-02-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Make the error message in case of a broken thread
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sun Feb 7 21:56:00 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gmem.c (g_mem_profile): Copy all elements
|
||||
of the allocations[] array, including the last.
|
||||
(Pointed out by "Matthew W. Samsonoff" <mws7323@osfmail.isc.rit.edu>)
|
||||
|
||||
1999-02-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Make the error message in case of a broken thread
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sun Feb 7 21:56:00 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gmem.c (g_mem_profile): Copy all elements
|
||||
of the allocations[] array, including the last.
|
||||
(Pointed out by "Matthew W. Samsonoff" <mws7323@osfmail.isc.rit.edu>)
|
||||
|
||||
1999-02-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Make the error message in case of a broken thread
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sun Feb 7 21:56:00 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gmem.c (g_mem_profile): Copy all elements
|
||||
of the allocations[] array, including the last.
|
||||
(Pointed out by "Matthew W. Samsonoff" <mws7323@osfmail.isc.rit.edu>)
|
||||
|
||||
1999-02-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Make the error message in case of a broken thread
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sun Feb 7 21:56:00 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gmem.c (g_mem_profile): Copy all elements
|
||||
of the allocations[] array, including the last.
|
||||
(Pointed out by "Matthew W. Samsonoff" <mws7323@osfmail.isc.rit.edu>)
|
||||
|
||||
1999-02-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Make the error message in case of a broken thread
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sun Feb 7 21:56:00 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gmem.c (g_mem_profile): Copy all elements
|
||||
of the allocations[] array, including the last.
|
||||
(Pointed out by "Matthew W. Samsonoff" <mws7323@osfmail.isc.rit.edu>)
|
||||
|
||||
1999-02-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Make the error message in case of a broken thread
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sun Feb 7 21:56:00 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gmem.c (g_mem_profile): Copy all elements
|
||||
of the allocations[] array, including the last.
|
||||
(Pointed out by "Matthew W. Samsonoff" <mws7323@osfmail.isc.rit.edu>)
|
||||
|
||||
1999-02-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Make the error message in case of a broken thread
|
||||
|
@ -1,3 +1,9 @@
|
||||
Sun Feb 7 21:56:00 1999 Owen Taylor <otaylor@redhat.com>
|
||||
|
||||
* gmem.c (g_mem_profile): Copy all elements
|
||||
of the allocations[] array, including the last.
|
||||
(Pointed out by "Matthew W. Samsonoff" <mws7323@osfmail.isc.rit.edu>)
|
||||
|
||||
1999-02-05 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* configure.in: Make the error message in case of a broken thread
|
||||
|
@ -409,7 +409,7 @@ g_mem_profile (void)
|
||||
gulong local_freed_mem;
|
||||
|
||||
g_mutex_lock (mem_profile_lock);
|
||||
for (i = 0; i < (MEM_PROFILE_TABLE_SIZE - 1); i++)
|
||||
for (i = 0; i < MEM_PROFILE_TABLE_SIZE; i++)
|
||||
local_allocations[i] = allocations[i];
|
||||
local_allocated_mem = allocated_mem;
|
||||
local_freed_mem = freed_mem;
|
||||
|
2
gmem.c
2
gmem.c
@ -409,7 +409,7 @@ g_mem_profile (void)
|
||||
gulong local_freed_mem;
|
||||
|
||||
g_mutex_lock (mem_profile_lock);
|
||||
for (i = 0; i < (MEM_PROFILE_TABLE_SIZE - 1); i++)
|
||||
for (i = 0; i < MEM_PROFILE_TABLE_SIZE; i++)
|
||||
local_allocations[i] = allocations[i];
|
||||
local_allocated_mem = allocated_mem;
|
||||
local_freed_mem = freed_mem;
|
||||
|
Loading…
x
Reference in New Issue
Block a user