search for: tsint

Displaying 5 results from an estimated 5 matches for "tsint".

Did you mean: sint
2009 Sep 09
10
dtrace overhead and proper measuring technique
...BEGIN { self->ts = 0; self->vts = 0; } pid$target::nsMenuX??MenuConstruct*:entry { self->ts = timestamp; self->vts = vtimestamp; } pid$target::nsMenuX??MenuConstruct*:return /self->ts/ { this->ts = timestamp - self->ts; this->vts = vtimestamp - self->vts; @tsint = sum(this->ts / 1000000); @tsfrac = sum(this->ts % 1000000); @vtsint = sum(this->vts / 1000000); @vtsfrac = sum(this->vts % 1000000); @n = count(); self->ts = 0; self->vts = 0; /*ustack();*/ } END { t = timestamp; printa("elapsed: %@u.%@06ums\n", @tsi...
2009 Sep 09
4
usdt probes vs pid$target
...imestamp - self->vts; printf("\n"); printf("# roots: %u\n", self->roots); printf("elapsed: %u.%06ums\n", this->ts / 1000000, this->ts % 1000000); printf("cpu : %u.%06ums\n", this->vts / 1000000, this->vts % 1000000); @tsint = sum(this->ts / 1000000); @tsfrac = sum(this->ts % 1000000); @vtsint = sum(this->vts / 1000000); @vtsfrac = sum(this->vts % 1000000); @n = count(); self->ts = 0; self->vts = 0; ustack(); } END { t = timestamp; printf("\n\n----------------------\...
2006 May 06
1
Error compiling Wine 0.9.12
...: error: `radix' undeclared (first use in this function) ./ppl.l:830: error: `tULONG' undeclared (first use in this function) ./ppl.l:835: error: `tSLONG' undeclared (first use in this function) ./ppl.l:840: error: `tUINT' undeclared (first use in this function) ./ppl.l:845: error: `tSINT' undeclared (first use in this function) make[2]: *** [lex.yy.o] Error 1 make[2]: Leaving directory `/usr/src/wine-0.9.12/libs/wpp' make[1]: *** [wpp] Error 2 make[1]: Leaving directory `/usr/src/wine-0.9.12/libs' make: *** [libs] Error 2 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1...
2003 Apr 28
1
Wine compile error in tools/wpp (ppl.l) under debian
...t use in this function) ./ppl.l:824: `radix' undeclared (first use in this function) ./ppl.l:825: `tULONG' undeclared (first use in this function) ./ppl.l:830: `tSLONG' undeclared (first use in this function) ./ppl.l:835: `tUINT' undeclared (first use in this function) ./ppl.l:840: `tSINT' undeclared (first use in this function) ./ppl.l:841: warning: control reaches end of non-void function ./ppl.l: At top level: ./ppl.l:851: parse error before `*' ./ppl.l:852: warning: `expand_special' was declared implicitly `extern' and later `static' ./ppl.l:645: warning: pr...
2006 May 18
2
Problems compiling Wine
...or: `tSLONGLONG' undeclared (first use in this function) ./ppl.l:846: error: `tULONG' undeclared (first use in this function) ./ppl.l:851: error: `tSLONG' undeclared (first use in this function) ./ppl.l:856: error: `tUINT' undeclared (first use in this function) ./ppl.l:861: error: `tSINT' undeclared (first use in this function) make[2]: *** [lex.yy.o] Error 1 make[2]: Leaving directory `/home/magnus/installation/wine-0.9.13/libs/wpp' make[1]: *** [wpp] Error 2 make[1]: Leaving directory `/home/magnus/installation/wine-0.9.13/libs' make: *** [libs] Error 2 I guess ther...