similar to: Double cpu

Displaying 20 results from an estimated 8000 matches similar to: "Double cpu"

2005 Jul 19
12
Best VoIP provider
It does not look like Nufone is still in business, judging from the content on their site, which is very little. There is not even a configuration document to download, to connect to their network. The rates file is only for US/Canada calling. No international rates on this rates.csv file. I have signed up with a $5.00 account with them way back in November 2004. After signup, I havent received
2003 Dec 18
8
asterisk behind NAT
I know this issue has been covered with at least 2 different patches, and probably a dozen different discussions, however I'm a bit unclear as to what my options are. I have a DSL line coming in with 8 IP addresses going to an OpenBSD firewall doing 1:1 NAT for machines behind the firewall. My asterisk box is one of these machines, and I'd like to allow foreign SIP clients
2005 Oct 04
3
Outgoing busy
I have a problem. Incoming calls work without problem but I cant call out. Using AAH.Gets a busy tone Anyone who can see a mistake in Outgoing settings context=from-pstn host=ipkund1.rixtelecom.se insecure=very nat=yes secret=xxxxxxxxxxx type=peer username=0406082250 Regards Anders Svensson -------------- next part -------------- An HTML attachment was scrubbed... URL:
2004 Mar 04
1
CPU load
What processor? What distro? What kernel(SMP, non-SMP)? What are you doing specifically with your Asterisk system? My personal experience is that I've had high-load crashes anywhere from 6.0 to 8.0 on a SMP P4 Single-processor with HT enabled. The load isn't the best indicator of when a crash is going to occur. when I had high-load crashes it was usually a sudden spike in processor load
2003 Mar 02
12
Transcoding
Hello, Does asterisk do transcoding when the call goes through the system, codecs are the same but signaling protocol is changed. example: SIP with GSM ---> IAX with GSM What quality destruction happen when I use transcoding? I know this is not a concrete/precise question, but I would like to know how is it in general. What CPU performance is needed for transcoding 30 channels e.g. from
2005 Oct 04
1
Dial pattern sort order
Hi! Is there a simple way for an * newbie to force * to use different sip-trunks for different calls. I have 2 siptrunks, one for inland calls and one for international calls. All in country numbers starts with 0 and all international starts with 00. This I have configured in the outbound routing. But * always use the incountry trunk because the 0. dialpattern is also true for international
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
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
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
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
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:
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 > >
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 =
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
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
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
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