On Thu, Aug 18, 2011 at 2:36 PM, Zhao Cheng <[email protected]> wrote:
> Is there a way to directly transfer the the underlying data of > v8::Value between processes? The underlying memory is owned by the v8 memory allocator in one process. There is no way to transfer ownership of a range of bytes from one process to another. That address lives in the range owned by that process. If a different process tries to access that memory, results are (by definition) a segmentation fault. i.e. use JSON.stringify(). -- ----- stephan beal http://wanderinghorse.net/home/stephan/ -- v8-users mailing list [email protected] http://groups.google.com/group/v8-users
