1 /* Copyright JS Foundation and other contributors, http://js.foundation 2 * 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #ifndef ECMA_GC_H 17 #define ECMA_GC_H 18 19 #include "ecma-globals.h" 20 #include "jmem.h" 21 22 /** \addtogroup ecma ECMA 23 * @{ 24 * 25 * \addtogroup ecmagc Garbage collector 26 * @{ 27 */ 28 29 void ecma_init_gc_info (ecma_object_t *object_p); 30 void ecma_ref_object (ecma_object_t *object_p); 31 void ecma_deref_object (ecma_object_t *object_p); 32 void ecma_gc_free_properties (ecma_object_t *object_p); 33 void ecma_gc_run (void); 34 void ecma_free_unused_memory (jmem_pressure_t pressure); 35 36 /** 37 * @} 38 * @} 39 */ 40 41 #endif /* !ECMA_GC_H */ 42