similar to: dtrace: failed to enable ''prt_all_cmt2.d'': DIF program exceeds maximum program size

Displaying 20 results from an estimated 2000 matches similar to: "dtrace: failed to enable ''prt_all_cmt2.d'': DIF program exceeds maximum program size"

2008 Jul 01
17
Memory leak scripts
Hola, I am trying to isolate the memory leak I suspect in a mailman installation ? I found: http://blogs.sun.com/sanjeevb/date/200506 It gives an error: god at irt-smtp-02:~ 9:21am 65 # ./memleak.d 10312 dtrace: failed to compile script ./memleak.d: line 3: probe description pid10312:libc.so.1:malloc:entry does not match any probes I am on SunOS 5.10 Generic_127112-07 i86pc i386 i86pc Are
2009 Feb 27
7
Memory usage for C++ Application is growing
Hi , I have c++ server application in solaries 10 . Day by day memory usage is growing i try to find memory leaks with MDB and DTRACE and no leaks found. how can we find reason for growing memory , can we know which memory sigment is cause for growing memory usage Thanks in Advance. Rao -- This message posted from opensolaris.org
2007 Nov 13
4
sd_max_throttle
Hello, we are using hardware array and its vendor recommends the following setting in /etc/system: set sd:sd_max_throttle = <value> or set ssd:ssd_max_throttle = <value> Is it possible to monitor *somehow* whether the variable becomes sort of bottleneck ? Or how its value influences io traffic ? Regards przemol
2006 Jul 31
3
[Xen-tools] Dprobe and Systemtap for Xen Tracing and Debugging.
Hi folks In linux kernel development, there is a debug tool called dprobe ,which can be used to dynamic insert the probes into the function of kernel source code and find what''s goning on.There is also a tool called systemtap which is based on dprobe and kernel debug info. Using the kprobes infrastructure, SystemTap is being developed to dynamically instrument the kernel and user
2001 Sep 30
1
wine won't load anything
I have been able to install Starcraft and Swish 2.0 using wine (under Mandrake 8.0) but when I try to run either program I get a "can't load *.dll" error. Both errors are from dll files that the are in the program directory itself. I have attempted to specify these dlls like all of the default dlls in the wine config file but it still can't find them. Anyone know if I have
2007 Mar 09
2
DIF means?
Hi, In Solairs Dtrace User Guide, page 193, it lists the arguments of ERROR probe. One of these arguments is arg3, it is explained as "The DIF offset into that action or -1 if not applicable". Then what does the abbr. DIF mean? Regards TJ
2023 Dec 07
2
Are DIF files for releases available
I have a semi working 32-bit build of Samba 4.11.0 for Windows based on a patched Cygwin 2.5.2 build. I wondered if anyone knows where a set of DIF files to move it from release 4.11.0 to the latest stable release of 4.19.x (or through each intervening release to that point) could be obtained. I would like to apply changes incrementally to this build to avoid breaking the current work I have in
2023 Dec 07
1
Are DIF files for releases available
07.12.2023 22:22, David Bean via samba ?????: > I have a semi working 32-bit build of Samba 4.11.0 for Windows based on a patched Cygwin 2.5.2 build. I wondered if anyone knows where a set of DIF files to move it from release 4.11.0 to the latest stable release of 4.19.x (or through each intervening release to that point) could be obtained. I would like to apply changes incrementally to this
2011 Aug 31
2
stumped on how to reorder factors
I am trying to reorder a factor data type so that when I plot stats associated with the factor, the ordering makes sense. For instance, if I have a factor entered as follows ... A = as.factor(c("1", "10", "3", "3", "10", "10")) levels(A) ... the ordering does not really make sense (assuming I want the factor ordered by integer
2009 Mar 01
1
projecting GIS coordinates for analysis with spatstat package
I am working on creating an R package for doing fire department analysis and am trying to create a function that can display emergency incident densities. The following code sort of does the trick, but I need a display that shows the number of incidents per square mile. I believe the code below shows incidents per square unit (in this case, degrees lat/long). To solve this problem, I believe
2007 Apr 24
1
[LLVMdev] LLVM conference
Dear Chris et al, James Weisner and I would like to attend your conference on the 25th. We will have to get up earlier than we tend to so we can make it there from Santa Cruz by 8 AM! See you there! By the way, we reached a major milestone last Friday. We can now turn pretty much anything reasonably simple that can be compiled by LLVM into one giant "virtual" combinatorial
2010 Jul 21
0
DIF Analysis starting from a gpcm class object
Dear useRs, does any of you have suggestions on how to conduct a proper DIF analysis starting from a model of class gpcm (from the wonderful package ltm by prof. Rizopoulos)? difR will handle only dichotomous items, and I have a mix of dicho- and polytomous ones (that's why I chose the partial credit model). I also found the package lordif, but I'm not really sure if that's what I
2008 Dec 01
7
DIF content is invalid?
What''s going on? # dtrace -s iotime_all.d 100 dtrace: failed to enable ''iotime_all.d'': DIF program content is invalid The errant script.... #pragma D option quiet BEGIN { stime = timestamp; io_count = 0; } io:::start /args[2]->fi_pathname != "<none>"/ { start[pid, args[2]->fi_pathname, args[0]->b_edev, args[0]->b_blkno,
2005 Sep 08
3
DTrace typewriter
G''Day Folks, I''ve found another use of dtrace, this makes your console keyboard sound like a typewriter. http://www.brendangregg.com/DTrace/typewriter-0.70.tar.gz I''ve only tested it on an UltraSPARC 5 and a Pentium laptop so far, more to follow. Ok, sorry, not actually a practical use of DTrace. :) Enjoy! Brendan [Sydney, Australia]
2007 Apr 18
3
dtrace-discuss: cannot get a ''string'' to print...
hi, I''m using the PID provider to trace a 32-bit app, prtdiag. I''m trying to print the value of "propname" (arg1) in the following func: int picl_get_propval_by_name(picl_nodehdl_t nodeh, const char *propname, void *valbuf, size_t nbytes) ... i''ve tried many versions, but this is a representative one: 53 this string propname; 54 55
2006 Nov 15
2
problem with dtrace toolkit
I tried some of the scripts in the toolkit (opensnoop, execsnoop, dtruss), and I keep seeing errors like this: dtrace: error on enabled probe ID 3 (ID 113: syscall::exece:return): invalid kernel access in action #5 at DIF offset 0 Anyone know what could be the problem? TIA This message posted from opensolaris.org
2008 Apr 20
1
dtrace script to monitor file access
A user has asked us to find out who is changing one of their files and how it is being changed. I came up with the script below: #!/usr/sbin/dtrace -s #pragma D option quiet BEGIN { printf("\n Timestamp gid uid pid ppid execname function current directory file name\n\n"); } syscall::open:entry,
2006 Aug 20
4
xen dom0 crashes while copying a lot of files
xen 3.0.2 dom0 (kernel 2.6.16-xen) always crashes, or rather freezes, whenever I copy more than 40GB of data. i checked syslog and there is no indication at all why it crashes. this happens whether the OS is FC5 or mandriva 2006, and is also independent of hardware, although we have mostly dell poweredge (1750, 2850, etc.) i am wondering if there some workaround. thanks! System Coordinator,
2006 Mar 16
0
Re: Can dtrace agent of JDK be used in IBM Websphere?
Hi, Yufei: Thanks for your kind action. Let me centralize all the harm-hearted guys and involved alias in one email. Below is the answer of your question (Can you reply with more details on what failed? Does websphere use an IBM or Sun developed SDK? ) 1. Seems IBM bundled JDK can not detect agent options, like below: If use Sun JDK 1.5, no problem: /usr/jdk/jdk1.5.0_06/bin/java
2006 Jul 04
2
[Xen-tools] What''s the main difference between BVT and EDF?,
Hi folks BVT and EDF are both xen scheduler. It is expected that administrator will choose the scheduler most appropriate to their application and configure the machine to boot with that scheduler. I just wonder What''s the main difference between BVT and EDF? What kind of scenario to use them? Thanks _______________________________________________ Xen-tools mailing list