search for: qws

Displaying 3 results from an estimated 3 matches for "qws".

Did you mean: aws
2005 Jul 19
2
variable size limit & documentation
...th a modest size global variable and hit a problem. Looking for a solution, I turn to the docs and notice that option "dynvarsize" appears just once in the docs, and it refers you to Chapter 3, where there is no mention. It doesn''t help me anyhow. I have: #!/usr/sbin/dtrace -qws #pragma D option dynvarsize=2000000 uint64_t last[600][4]; .. but get an error: # ./thomson5 dtrace: failed to enable ''./thomson5'': DIF program content is invalid If I reduce the first dimension from 600 to 180, it works as expected. Actually I just noted 512 works...
2010 Feb 08
1
megatec and blazer drivers for (brand)Tuncmatik (series)Newtech Pro 1KVA
...s->12 bit) [QGS] (209.7 50.0 219.7 50.0 000.8 019 374.9 374.3 041.8 ---.- 023.3 100000000001 *Battery status (Batt Volt, Nr of batt packs, Nr of batt packs in parallel, %battery charge, expected runtime in minutes) [QBV] (041.8 03 01 100 058 *Wide battery status ??? less battery less zeroes ??? [QWS] (0000000000000000000000000000000000000000000000000000000000000000 *UPS serial number [QID] (83120911100735 *UPS firmware revision [QVFW] (VERFW:00019.03 *UPS option flags (letters following E are enabled, letters following D are disabled) [QFLAG] (EpbshcDrovegfjl *What is this ? [QMD] (###########...
2009 Aug 28
13
putting a running app into trace mode
Suppose I have a USDT probe in Firefox and that I''m trying to catch the startup with a probe like this: proc:::exec-success /execname == "firefox-bin"/ { start = timestamp; } and stop tracing when Firefox hits this USDT probe: mozilla:::main-entry { exit(0); } How do I put the running firefox-bin into "trace mode" so that my USDT probe fires? Thanks, Joel