[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

svn with nonexistent file:/// uses all available memory

From: Blair Zajac <blair_at_orcaware.com>
Date: 2002-09-10 02:11:15 CEST

Try running this:

% svn log file:///some_path

It'll use all the available memory on your system.

Attaching strace to this shows this:

...
brk(0x8076000) = 0x8076000
open("/some_path/format", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/format", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/format", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/format", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/format", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/format", O_RDONLY) = -1 ENOENT (No such file or directory)
open("/format", O_RDONLY) = -1 ENOENT (No such file or directory)

Best,
Blair

-- 
Blair Zajac <blair@orcaware.com>
Web and OS performance plots - http://www.orcaware.com/orca/
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Tue Sep 10 02:11:47 2002

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.