Commit b35e30e7 authored by mads.s.ager's avatar mads.s.ager

Comment formatting change.

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@83 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 96ae958e
......@@ -1786,29 +1786,29 @@ class EXPORT V8 {
/**
* Enables the host application to receive a notification before a
* major garbage colletion. Allocations are not allowed in the callback
* function,
* you therefore cannot manipulate objects (set or delete properties
* for example) since it is possible such operations will result in
* the allocation of objects.
* major garbage colletion. Allocations are not allowed in the
* callback function, you therefore cannot manipulate objects (set
* or delete properties for example) since it is possible such
* operations will result in the allocation of objects.
*/
static void SetGlobalGCPrologueCallback(GCCallback);
/**
* Enables the host application to receive a notification after a
* major garbage collection. Allocations are not allowed in the callback function,
* you therefore cannot manipulate objects (set or delete properties
* for example) since it is possible such operations will result in
* the allocation of objects.
* major garbage collection. Allocations are not allowed in the
* callback function, you therefore cannot manipulate objects (set
* or delete properties for example) since it is possible such
* operations will result in the allocation of objects.
*/
static void SetGlobalGCEpilogueCallback(GCCallback);
/**
* Allows the host application to group objects together. If one
* object in the group is alive, all objects in the group are alive.
* After each garbage collection, object groups are removed. It is intended to be
* used in the before-garbage-collection callback function for istance to simulate
* DOM tree connections among JS wrapper objects.
* After each garbage collection, object groups are removed. It is
* intended to be used in the before-garbage-collection callback
* function for istance to simulate DOM tree connections among JS
* wrapper objects.
*/
static void AddObjectToGroup(void* id, Persistent<Object> obj);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment