search for: liacs

Displaying 20 results from an estimated 30 matches for "liacs".

Did you mean: liacc
2009 May 29
1
[LLVMdev] DSA nodes do not get merged
...*Result = malloc(sizeof(list)); Result->X = 1; Result->Next = malloc(sizeof(list)); Result = Result->Next; Result->X = 2; Result->Next = 0; } int main() { MakeList(); return 0; } --------- You can view the corresponding DSGraph here: http://www.liacs.nl/~hvdspek/images/dsgraph_1node.png The following code produces 2 DSNodes: ------------- typedef struct list { int X; struct list *Next; } list; void MakeList() { list *Result = malloc(sizeof(list)); Result->X = 1; Result->Next = malloc(sizeof(list)); R...
2001 Jun 04
1
password_authtentication option ignored in auth handling
...mp; authenticated == 0) authenticated = auth2_pam(authctxt); #endif xfree(lang); -- _________________________________________________________________ / Nothing is fool-proof to a sufficiently talented fool \ | wichert at cistron.nl http://www.liacs.nl/~wichert/ | | 1024D/2FA3BC2D 576E 100B 518D 2F16 36B0 2805 3CB8 9250 2FA3 BC2D |
2002 Jul 03
4
opie support?
I see that you have s/key support in ssh, any plans to add opie support as well ? just asking ..
2009 Jan 16
1
[LLVMdev] poolallocation error
...0x00007f9fc31761c4 __libc_start_main + 244 16 opt 0x00000000006d7c19 __gxx_personality_v0 + 721 Aborted Is there something that I am missing on the command line ? Does anyone use DSA actively now ? Thanks for your time. - Prakash On Wed, Nov 19, 2008 at 8:59 AM, Mattias Holm <holm at liacs.nl> wrote: > Hi, > > I am trying to use the poolallocator. More specific, I am trying to > play around with the pointer compression pass. Though, I get assertion > failures for the pass dependencies. > > This is when it in PointerCompress::getAnalysisUsage tries to register...
2001 Jun 03
1
OPIE support patch
...a little patch to add support for OPIE to OpenSSH. Currently untested, but feedback is welcome. Wichert. -- _________________________________________________________________ / Nothing is fool-proof to a sufficiently talented fool \ | wichert at cistron.nl http://www.liacs.nl/~wichert/ | | 1024D/2FA3BC2D 576E 100B 518D 2F16 36B0 2805 3CB8 9250 2FA3 BC2D | -------------- next part -------------- diff -wur org/openssh-2.5.2p2/ChangeLog openssh-2.5.2p2/ChangeLog --- org/openssh-2.5.2p2/ChangeLog Thu Mar 22 06:04:12 2001 +++ openssh-2.5.2p2/ChangeLog Sun Jun 3 18:37:17...
2008 Nov 19
2
[LLVMdev] poolallocation error
Hi, I am trying to use the poolallocator. More specific, I am trying to play around with the pointer compression pass. Though, I get assertion failures for the pass dependencies. This is when it in PointerCompress::getAnalysisUsage tries to register the the BU pass as required. I.e. when AU.addRequired<CompleteBUDataStructures>(); is called. $ opt -f -load
2009 Jan 19
0
[LLVMdev] poolallocation error
...0x00007f9fc31761c4 __libc_start_main + 244 16 opt 0x00000000006d7c19 __gxx_personality_v0 + 721 Aborted Is there something that I am missing on the command line ? Does anyone use DSA actively now ? Thanks for your time. - Prakash On Wed, Nov 19, 2008 at 8:59 AM, Mattias Holm <holm at liacs.nl> wrote: > Hi, > > I am trying to use the poolallocator. More specific, I am trying to > play around with the pointer compression pass. Though, I get assertion > failures for the pass dependencies. > > This is when it in PointerCompress::getAnalysisUsage tries to register...
2009 Jan 21
1
[LLVMdev] poolallocation error
...0x00000000006d7c19 __gxx_personality_v0 + 721 > Aborted > > > Is there something that I am missing on the command line ? Does anyone > use DSA actively now ? > > Thanks for your time. > > - Prakash > > On Wed, Nov 19, 2008 at 8:59 AM, Mattias Holm <holm at liacs.nl> wrote: > >> Hi, >> >> I am trying to use the poolallocator. More specific, I am trying to >> play around with the pointer compression pass. Though, I get assertion >> failures for the pass dependencies. >> >> This is when it in PointerCompress:...
2009 Nov 20
1
[LLVMdev] getExitBlocks returns duplicates in result vector
Hi, LoopBase::getExitBlocks in LoopInfo.h returns all exit basic blocks by iterating over all blocks of a loop and storing all branch targets that are outside the loop. This method allows for duplicates in the result vector, e.g.: Loop at depth 2 containing: %bb2<header><exit>,%bb1<latch>,%bb3<exit> where both bb2 and bb3 have bb4 as their exit block. This loop
2010 Mar 17
1
[LLVMdev] Getting the DSNode from a Pool Descriptor?
Depending on the value of dsa_pass_to_use, either EquivBUDataStructures or EQTDDataStructures is used. In the case that the top-down DSA is used, information is pushed down to nodes in callees. However, if bottom-up DSA is used, information has only been merged upwards and the nodes are not necessarily equivalent. Harmen Andrew Lenharth wrote: > On Tue, Mar 16, 2010 at 3:46 PM, Patrick
2001 Jul 16
1
porting OpenSSH to Lynx
To Whoever can help me, I need to port OpenSSH that is available as part of Linux-7.0 to Lynx OS. Has it ever been tried to port to Lynx? If yes, kindly send me details regarding porting to Lynx. Expecting your help, A.Gnana Hari Sekar. ____________________________________________________________ Do You Yahoo!? For regular News updates go to http://in.news.yahoo.com
2001 Aug 17
1
Comment Re: http://www.openssh.com/faq.html#3.2
The analysis given in section 3.2 of the portable OpenSSH FAQ regarding "Empty passwords not allowed with PAM authentication" appears to be specific to Linux's pam_unix.so. No mention is made that this is in fact a Linux-specific remedy. Some text should probably be added to this extent. If anyone has worked on this on Solaris 8 I'd be interested to hear what solution was
2002 Jan 01
1
RC3 OggDrop
Hi, It's nice to see my patch in action. Who made the "Save Quality" dialog box? I think it should also contain the bitrate itself as a reference. Olaf van der Spek Almere, Holland Olaf@XCC.TMFWeb.NL http://xccu.sourceforge.net/ http://xcc.tiberian.com/ <p>--- >8 ---- List archives: http://www.xiph.org/archives/ Ogg project homepage: http://www.xiph.org/ogg/ To
2001 Nov 04
2
OPIE patch for current CVS
...sDeprecated }, { "listenaddress", sListenAddress }, { "printmotd", sPrintMotd }, -- _________________________________________________________________ / Nothing is fool-proof to a sufficiently talented fool \ | wichert at wiggy.net http://www.liacs.nl/~wichert/ | | 1024D/2FA3BC2D 576E 100B 518D 2F16 36B0 2805 3CB8 9250 2FA3 BC2D |
2001 Aug 28
2
[patch] known hosts with ports
Hello. We are currently installing a new firewall, and would like to use a mixture of NAT and port mapping to have a single "gateway" host address which exposes a range of open ports, each of which maps to sshd of a different host in our internal network (e.g. ssh.jesus.cam.ac.uk on port 6789 maps to internal host1 port 22 whereas ssh.jesus.cam.ac.uk on port 6790 maps to internal
2001 Jul 26
7
comment on another command line option
I would like ssh to have the command line option of supplying the passphrase. This would make it possible to do attendant free scp transfers from PHP, for example. As it is, it is impossible to use a web script to initiate an scp xfer if an encrypted private key is used. I realize that stupid people could make shell scripts or web scripts then with the pass phrase in them, but those same stupid
2010 Mar 19
0
[LLVMdev] Getting the DSNode from a Pool Descriptor?
Hi Patrick, That's right. DSNodes are coupled to the original function. For function clones, you first need to get the original function, and then use the DSNode from that function. FuncInfo contains the information if a function is a clone and what the original function is. If you want to find the corresponding DSNode for some instruction, you must call PA::FuncInfo::MapValueToOriginal(
2010 Mar 19
3
[LLVMdev] Getting the DSNode from a Pool Descriptor?
Harmen, your suggestion of inverting the mapping almost worked (and Andrew was correct that the function I need is the same as the one in which poolinit appears). Unfortunately, it appears that this mapping only considers the original function and not any of its clones. Since the pool descriptor in question may very well only exist in a clone, I can't use this. Is there another way?
2002 Jun 25
10
Last call.
Outside the pre-auth patch by Markus to fix Cygwin and a few other platforms. SEND ME (privately) ANY required patch against the lastest snapshot. I'm doing the final commits this evening. Patches that have been temporary rejected for this release. - Owl's full patch for SysV Shm if mmap fails - mmap() on /dev/zero - mmap() on sparse file .. Not looked at the BSD/OS 5.0 patch
2008 Dec 09
1
[LLVMdev] how to make llvm-ld pass -m64 to as?
A quick question, is there any way to make llvm-ld pass -m64 to the assembler (when running llvm-ld with -native). By default AS generate 32 bit code on OS X (x86)? Regards, Mattias