Re: Converting int to a string in DTrace
- In reply to: Mateusz Piotrowski : "Re: Converting int to a string in DTrace"
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 30 Aug 2022 16:11:04 UTC
I'm not sure if it's documented anywhere in FreeBSD itself, but it is documented here: https://illumos.org/books/dtrace/chp-actsub.html. -- Domagoj On 8/30/2022 5:01 PM, Mateusz Piotrowski wrote: > Hey Domagoj! > >> On 30. Aug 2022, at 17:58, Domagoj Stolfa <domagoj.stolfa@gmail.com> >> wrote: >> >> >> this->unit_number = args[1]->unit_number >= 0 ? >> lltostr(args[1]->unit_number) : ""; > > This is exactly what I was looking for, thanks! > > Is it documented somewhere on FreeBSD? > > Best, > Mateusz