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 { ...@@ -1786,29 +1786,29 @@ class EXPORT V8 {
/** /**
* Enables the host application to receive a notification before a * Enables the host application to receive a notification before a
* major garbage colletion. Allocations are not allowed in the callback * major garbage colletion. Allocations are not allowed in the
* function, * callback function, you therefore cannot manipulate objects (set
* you therefore cannot manipulate objects (set or delete properties * or delete properties for example) since it is possible such
* for example) since it is possible such operations will result in * operations will result in the allocation of objects.
* the allocation of objects.
*/ */
static void SetGlobalGCPrologueCallback(GCCallback); static void SetGlobalGCPrologueCallback(GCCallback);
/** /**
* Enables the host application to receive a notification after a * Enables the host application to receive a notification after a
* major garbage collection. Allocations are not allowed in the callback function, * major garbage collection. Allocations are not allowed in the
* you therefore cannot manipulate objects (set or delete properties * callback function, you therefore cannot manipulate objects (set
* for example) since it is possible such operations will result in * or delete properties for example) since it is possible such
* the allocation of objects. * operations will result in the allocation of objects.
*/ */
static void SetGlobalGCEpilogueCallback(GCCallback); static void SetGlobalGCEpilogueCallback(GCCallback);
/** /**
* Allows the host application to group objects together. If one * Allows the host application to group objects together. If one
* object in the group is alive, all objects in the group are alive. * 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 * After each garbage collection, object groups are removed. It is
* used in the before-garbage-collection callback function for istance to simulate * intended to be used in the before-garbage-collection callback
* DOM tree connections among JS wrapper objects. * function for istance to simulate DOM tree connections among JS
* wrapper objects.
*/ */
static void AddObjectToGroup(void* id, Persistent<Object> obj); 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