Do you mean that you have a problem with the value of the pointer? That is
"copying the pointer." This seems impossible.

Attempting to access through a pointer copied via unsafe is (generally)
inviting doom, and seems highly possible. The instant the last pointer to
that data goes out of scope the address range occupied by the formerly
pointed to items is formally inaccessible. Using unsafe to keep a shadow
copy of the address and then poking around is quite likely to fail, and
even when it does not, it is quite likely to be meaningless. (random data
from some other use).

If I misunderstood, please forgive me.

On Sun, Jun 7, 2020 at 6:15 AM Viktor Kojouharov <vkojouha...@gmail.com>
wrote:

> p.s. should such questions be posted in golang-dev, since it deals with
> runtime internals?
>
> --
> You received this message because you are subscribed to the Google Groups
> "golang-nuts" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to golang-nuts+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/golang-nuts/71d7fb5c-3ef5-4611-b9ce-299f7b90945eo%40googlegroups.com
> <https://groups.google.com/d/msgid/golang-nuts/71d7fb5c-3ef5-4611-b9ce-299f7b90945eo%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>


-- 

*Michael T. jonesmichael.jo...@gmail.com <michael.jo...@gmail.com>*

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CALoEmQwf4wL3TPdh5yi0hU5ibJaN7-35SsQgGfGLTRAaEjihMA%40mail.gmail.com.

Reply via email to