EiffelBase class
(HTML page generated by ISE Eiffel 4.2)
Eiffel Class
indexing
description: "Constants used by memory management. This class may be used as ancestor by classes needing its facilities.";
status: "See notice at end of class";
date: "$Date: 2007-03-30 19:10:11 +0000 (Fri, 30 Mar 2007) $";
revision: "$Revision: 95354 $"
class MEM_CONST
feature -- Access
Total_memory: INTEGER is 0;
-- Code for all the memory managed
-- by the garbage collector
Eiffel_memory: INTEGER is 1;
-- Code for the Eiffel memory managed
-- by the garbage collector
C_memory: INTEGER is 2;
-- Code for the C memory managed
-- by the garbage collector
Full_collector: INTEGER is 0;
-- Statistics for full collections
Incremental_collector: INTEGER is 1;
-- Statistics for incremental collections
end -- class MEM_CONST
|