search for: anderer

Displaying 20 results from an estimated 671 matches for "anderer".

Did you mean: wanderer
2004 Apr 02
2
[LLVMdev] Function pointers
OK, I solved it all ( so far :) ), mixing in some load-instructions and called on the result of that, which worked. Here is the skeleton-code: %kernel = type { int ()* } int puts_kernel(){...} ; main() %theKernel = malloc %kernel %puts_kernelPTR = getelementptr %kernel* %theKernel, long 1, ubyte 0 store int ()* %puts_kernel, int ()** %puts_kernelPTR %tmp.11 = load int ()** %puts_kernelPTR
2003 Jun 10
1
Samba 2.2.7 as PDC causing BSOD on 2K domain logon
Hello, Have wrestled this one for about a week, now, getting frustrated ;-) Running samba as PDC for my domain (cf. smb.conf further down) When logging in on my 2K Pro machine, I first get a "can't find roaming profile, attempting local profile"-error, but logon using my user's smb account accepts only the correct password and so the identification part works well. Next,
2004 Apr 02
0
[LLVMdev] Function pointers
On Fri, 2 Apr 2004, Anders Alexandersson wrote: > OK, I solved it all ( so far :) ), mixing in some load-instructions and > called on the result of that, which worked. > > Here is the skeleton-code: > > %kernel = type { int ()* } > > int puts_kernel(){...} > > ; main() > > %theKernel = malloc %kernel > %puts_kernelPTR = getelementptr %kernel* %theKernel,
2011 Jul 29
1
Can't see shares...
I can't figure out what's wrong with my config, I can see the share \\beata\anders, but not store0 or store1; # smb.conf is the main Samba configuration file. You find a full commented # version at /usr/share/doc/packages/samba/examples/smb.conf.SUSE if the # samba-doc package is installed. # Date: 2011-03-01 [global] workgroup = NORRBRING passdb backend = tdbsam
2004 Apr 02
0
[LLVMdev] Function pointers
I solved that one by substituting alloca into malloc, and forwarded the problem to actually calling the %puts_kernel function via my newly created function pointer. This works: %tmp.1 = call int %puts_kernel() This: %tmp.2 = call int %puts_kernelPTR() issues error: "Reference to an invalid definition: 'puts_kernelPTR' of type 'int () *'" How do I call the function
2010 Nov 24
3
[LLVMdev] Question regarding the alias analysis chaining behaviour
Hi, I am using LLVM 2.4 on a Linux RHEL5 machine. I was trying to figure out how the chaining of the alias analysis passes works in LLVM. Here are the command I used to test the chaining part. 1. ./opt hello_world_1_nest_func.bc -o hello_world_1_nest_func_AA.bc -no-aa -anders-aa -licm Result: Anderson's AA and No Alias Analysis both are called. 2. ./opt hello_world_1_nest_func.bc -o
2006 Apr 08
3
stress testing
Does anyone know how to stress test samba without getting a whole room of people to login to all the computers at once ? perhaps some kind person has coded up a nice app that can be run on the server ?? just curious.. Kind Regards, Chris Anders Network Engineer Anders Networks Mobile - 0421 580 017 Email - chris@anders.net.au Web - http://www.anders.net.au ? --- This
2006 Apr 04
3
degraded performance under domain login load
Hi guys, Not sure how to diagnose this problem however i have recently upgraded one of my schools sites from gentoo to freebsd which moved us from samba 3.0.14 to 3.0.21b and the first thing I noticed was when the students came to login if they all logged in at once the performance of login was crippled to a near standstill! As a test i swapped in the gentoo box and forced the upgrade to
2004 Mar 31
2
[LLVMdev] Function pointers
Hello out there! I am trying to build a table of 2 function poiters by using an array: %kernel = alloca [ 2 x int ()* ] I try to access the first pointer to be able to store location of my first function like this: %function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long 0 store int ()* %function_1, int ()* %function_pointer_1 But, I get the error message from llvm-asm:
2010 Apr 29
12
[Bug 1765] New: Error message if key not first in authorized_keys file
https://bugzilla.mindrot.org/show_bug.cgi?id=1765 Summary: Error message if key not first in authorized_keys file Product: Portable OpenSSH Version: 5.5p1 Platform: Other OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: sshd AssignedTo: unassigned-bugs at mindrot.org
2010 Nov 22
9
[Bug 1841] New: Error message if key not first in authorized_keys file
https://bugzilla.mindrot.org/show_bug.cgi?id=1841 Summary: Error message if key not first in authorized_keys file Product: Portable OpenSSH Version: 5.6p1 Platform: All OS/Version: Linux Status: NEW Severity: normal Priority: P2 Component: sshd AssignedTo: unassigned-bugs at mindrot.org
2007 Jul 20
0
Latest update gives me problems.
Hiya.. I got a new Samba for my SUSE 10.1 x86_64 by automatic update last night, and now all of a sudden my Vista workstation won't connect to the shares automatically. I have the machine as a domain controller with LDAP backend, and it's been working flawless until the new update to samba-3.0.22-13.32. My log.smbd shows this as the workstation logs in, and asks for username/password,
2004 Apr 01
1
[LLVMdev] Function pointers
Yes! :-) What would I do without you folks?! I am the one trying to build a Ruby compiler prototype, so be prepared for more questions...:) Thanks again! Anders ----- Original Message ----- From: "Chris Lattner" <sabre at nondot.org> To: <llvmdev at cs.uiuc.edu> Sent: Wednesday, March 31, 2004 5:49 PM Subject: Re: [LLVMdev] Function pointers On Wed, 31 Mar 2004, Anders
2008 Apr 28
3
[LLVMdev] ParamAttr Patch - Alignment fix
On Sunday 27 April 2008 01:33:31 Gordon Henriksen wrote: > On Apr 26, 2008, at 19:09, Anders Johnsen wrote: > > On Sunday 27 April 2008 00:48:00 Gordon Henriksen wrote: > >> On Apr 26, 2008, at 17:41, Anders Johnsen wrote: > >>> +void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index, > >>> unsigned align) { > >>> + CallSite Call =
2004 Mar 31
0
[LLVMdev] Function pointers
On Wed, 31 Mar 2004, Anders Alexandersson wrote: > Hello out there! > > I am trying to build a table of 2 function poiters by using an array: > > %kernel = alloca [ 2 x int ()* ] > > I try to access the first pointer to be able to store location of my first function like this: > > %function_pointer_1 = getelementptr [2 x int ()* ]* %kernel, long 0, long 0 > >
2011 Jun 10
1
Request: please test modification to EWS calendar functionality
I have expanded the EWS calendar functionality within Asterisk 1.8 so it is now possible to access any calendar within an Exchange 2007 or 2010 server. I have put the changes onto the reviewboard for astrisk but currently no one responded. So if you use the EWS calendar functionality within Asterisk and would like to have access to any calendar in Exchange please try the patch in the
2004 Apr 02
0
[LLVMdev] Function pointers
So, here comes the next question:) Now the program compiles, but crashes when run, "Segmentation fault". %kernel = type { int ()* } int %puts_kernel() { ret int 0 } int %main() { %theKernel = alloca %kernel %puts_kernelPTR = getelementptr %kernel* %theKernel, long 1, ubyte 0 store int ()* %puts_kernel, int ()** %puts_kernelPTR ret int 0 } I want to learn how to
2006 Apr 04
2
uploading client printer drivers broken ?
Hi guys, I am at a loss with this feature of samba in that it is soo hit or miss if the client drivers will upload or not depending on samba version used. Can someone confirm that this feature does indeed work in the latest samba release? i have tried many setups be it ldap or tdbsam, made sure all more groupmappings are correct, folders and permissions are correct, etc, Yet when i go
2018 May 22
1
CFLAndersAliasAnalysis print implementation
Hello all, I'm having trouble getting this analysis to print out it's graph of aliases. I am processing an example C file into llvm ir, like this: int main(void) { int x=1, y=2, z=3; int *p; int **p1, **p2; if (x==z) { //0x100000f40 p=&x; p1=&p; x*=2; *p1+=z; } } clang -S -emit-llvm example.c -o example.ll Then, I am trying to run the Andersen alias
2007 May 15
3
aov problem
I am using R to make two-way ANOVA on a number of variables using g <- aov(var ~ fact1*fact2) where var is a matrix containing the variables. However the outcome seem to be dependent on the order of fact1 and fact2 (i.e. fact2*fact1) gives a slightly (factor of 1.5) different result. Any ideas why this is? Thanks for any help Anders