search for: pathcount

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

2003 Dec 11
0
smbmount makes windows server stop serving.
...urns deleting and re-creating them. There will be no more than those 1000 directories at any time. After having created (and deleted) 3.5 millions directories the server denies access to the share. #!/bin/sh # winblast v3 - DoS on WinXP, Win2003Srv # 2003-12-04 Steve Ladjabi count=0 # using 'pathcount' directories pathcount=1000 echo running \'winblast v3\' with $pathcount files in loop ... while [ 1 ]; do p=$((pathcount*2-1)) stop=$((pathcount-1)) while [ "$p" != "$stop" ]; do dirname=wbst$p # delete old d...
2010 Dec 08
0
[LLVMdev] Reviewer for our Path Profiling Implementation
...vm/Analysis/ProfileInfoTypes.h +#define PP_ARRAY 0 +#define PP_HASH 1 Why not an enum? +typedef struct { + unsigned fnNumber; /* function number for these counters */ + unsigned numEntries; /* number of entries stored */ +} PathHeader; + +typedef struct { + unsigned pathNumber; + unsigned pathCounter; +} PathTableEntry; Being global types, they need a PathProfiling-specific name or prefix (there are other kinds of paths). To be proper, should they also be under: #if defined(__cplusplus) extern "C" { endif You may even want to remove the emacs hint "-*- C++ -*-" from bot...
2010 Dec 08
1
[LLVMdev] Reviewer for our Path Profiling Implementation
...efine PP_HASH 1 > > Why not an enum? > > +typedef struct { > + unsigned fnNumber; /* function number for these counters */ > + unsigned numEntries; /* number of entries stored */ > +} PathHeader; > + > +typedef struct { > + unsigned pathNumber; > + unsigned pathCounter; > +} PathTableEntry; > > Being global types, they need a PathProfiling-specific name or prefix > (there are other kinds of paths). To be proper, should they also be under: > #if defined(__cplusplus) > extern "C" { > endif > > You may even want to remove the...
2010 Dec 03
4
[LLVMdev] Reviewer for our Path Profiling Implementation
I am a student at the University of Alberta under the supervision of José Nelson Amaral, and I have been working on implementing path profiling into LLVM. I have completed my project and would like to submit it. We are looking for a reviewer for the path profiling implementation. We have sent previous requests to the llvmdev list but have so far been unsuccessful. Please see the attached
2009 Jul 10
3
[LLVMdev] Path profiling interface proposal
Hello, I am planning on contributing path profiling to LLVM by the end of August. I have written a document of what the interface to the path profiles would look like at that time. If someone has any amendments, I can incorporate them. http://www.cs.ualberta.ca/~pejic/PathProfiling.html Slobodan Pejic