Commit 30da343d authored by franzih's avatar franzih Committed by Commit bot

[api] Minor fix in documentation.

BUG=

Review-Url: https://codereview.chromium.org/2269033002
Cr-Commit-Position: refs/heads/master@{#38821}
parent 86d40978
...@@ -6464,19 +6464,18 @@ class V8_EXPORT StartupData { ...@@ -6464,19 +6464,18 @@ class V8_EXPORT StartupData {
*/ */
typedef bool (*EntropySource)(unsigned char* buffer, size_t length); typedef bool (*EntropySource)(unsigned char* buffer, size_t length);
/** /**
* ReturnAddressLocationResolver is used as a callback function when v8 is * ReturnAddressLocationResolver is used as a callback function when v8 is
* resolving the location of a return address on the stack. Profilers that * resolving the location of a return address on the stack. Profilers that
* change the return address on the stack can use this to resolve the stack * change the return address on the stack can use this to resolve the stack
* location to whereever the profiler stashed the original return address. * location to whereever the profiler stashed the original return address.
* *
* \param return_addr_location points to a location on stack where a machine * \param return_addr_location A location on stack where a machine
* return address resides. * return address resides.
* \returns either return_addr_location, or else a pointer to the profiler's * \returns Either return_addr_location, or else a pointer to the profiler's
* copy of the original return address. * copy of the original return address.
* *
* \note the resolver function must not cause garbage collection. * \note The resolver function must not cause garbage collection.
*/ */
typedef uintptr_t (*ReturnAddressLocationResolver)( typedef uintptr_t (*ReturnAddressLocationResolver)(
uintptr_t return_addr_location); uintptr_t return_addr_location);
......
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