search for: memoryleak

Displaying 7 results from an estimated 7 matches for "memoryleak".

Did you mean: memory_leak
2003 Mar 19
2
tinc memoryleak ?
I noticed that tinc is using quite a big amount of memory after some time. PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ Command 11559 root 9 0 129m 73m 1092 S 0.0 39.1 0:22.06 tincd you can see that after 22 hours the memsize is way too big. im using debian sid. kernel 2.4.20. tinc 1.0pre8 debian package. greetings christian Tinc: Discussion list
2014 Dec 15
3
Significant memory leak when using XML on Windows
...e for you). I simply tried to make it as easy as possible for people to see what's actually going on so they wouldn't have to program their own stuff for things like reading the actual memory consumed by the Rterm process etc.. If you prefer plain vanilla, though, I guess this would be it: memoryLeak <- function( x = system.file("exampleData", "mtcars.xml", package="XML"), n = 5000, free_doc = FALSE, rm_doc = FALSE, use_gc = FALSE ) { lapply(1:n, function(ii) { doc <- xmlParse(x) if (free_doc) free(doc) if (rm_doc) rm(doc) if (use_...
2008 Mar 01
12
Coding Contribution
Howdy, I am a C and C++ programmer -- how can I start helping with some basic coding for wine? Thanks, Will
2014 Dec 15
0
Significant memory leak when using XML on Windows
...make it as easy as > possible for people to see what's actually going on so they wouldn't have > to program their own stuff for things like reading the actual memory > consumed by the Rterm process etc.. If you prefer plain vanilla, though, I > guess this would be it: > > memoryLeak <- function( > x = system.file("exampleData", "mtcars.xml", package="XML"), > n = 5000, > free_doc = FALSE, > rm_doc = FALSE, > use_gc = FALSE > ) { > lapply(1:n, function(ii) { > doc <- xmlParse(x) > if (free_doc) f...
2009 Oct 15
10
xVM Ready for serious use ?
I currently have 2 x ESXi boxes that have VMs stored on a NFS/iSCSI debian lenny linux box. I had purchased a new whitebox server as an intended replacement for the linux box. I had always planned on installing opensolaris on the new hardware with this config; 2 x 640GB mirrored rpool 6 x 1TB in raidz2 This box was going to be built in parallel with the current server and I would have simply
2003 Mar 20
6
[Bug 68] Kernel panic
https://bugzilla.netfilter.org/cgi-bin/bugzilla/show_bug.cgi?id=68 ------- Additional Comments From laforge@netfilter.org 2003-03-20 10:55 ------- This looks strange. The BUG in slab.c tells us that there is a GFP_ATOMIC missing. This means that we are allocating kernel memory from softirq context with only GFP_KERNEL. If I understand your backtrace correctly, what happens is: - you are
2014 Dec 11
3
Significant memory leak when using XML on Windows
Dear list, I'm sorry to keep coming back with this time and time again, but this bug is still not fixed even though the root cause of the issue has been around for 2-3 years now. And as the number of packages that depend on XML grows, I thought maybe this deserves some wider attention. I did my best to make reproduction of the issue as easy as possible: