On Thu, Oct 31, 2019 at 11:44 PM Xiangdong JI <xiangdong...@arm.com> wrote: > > Thanks Ian, having difficulty figuring out how to print a pointer using > write1, could you please shed a light? Thanks.
You have to do something like (untested) var buf [20]byte b := itoa(buf[:], uint64(uintptr(ptrToPrint))) write1(2, &b[0], len(b)) Ian > On Friday, November 1, 2019 at 2:00:04 PM UTC+8, Ian Lance Taylor wrote: >> >> On Thu, Oct 31, 2019 at 5:10 AM Xiangdong JI <xiang...@arm.com> wrote: >> > >> > seeking utilities for diagnosing some 'nosplit' runtime functions. Thanks >> > a lot. >> >> b := []byte("my debug message\n") >> write1(2, &b[0], len(b)) >> >> Ian > > -- > 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/d097f1f1-7127-49d3-834c-e22c8b7ecb26%40googlegroups.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/CAOyqgcX3LKNjAF6dmcW3tiDc4XzjyLvHF-fgHbU49QPvXY4Xdw%40mail.gmail.com.