Displaying 20 results from an estimated 4000 matches similar to: "Module not loading"
2009 May 20
2
[LLVMdev] jump to function
Hello,
Is it possible to jump from one function to the beginning of another function?
For instance, assume wrapper_FOO is a wrapper for FOO. I replace the code
..............................
bar() {
FOO(...)
}
..............................
with
..............................
bar() {
wrapper_FOO(...)
}
..............................
Now, for efficiency, I'd like to have
wrapper_FOO() {
2009 May 19
1
[LLVMdev] how to get a deterministic execution
The generated code is deterministic, but the global order the instructions were generated
seems it is not (although the result is guaranteed to be the same).
Now I think the order functions are processed might not be guaranteed.
I've attached a test case, and here is what I get:
...............................
(303)$ ~/bin/llvm/bin/gcc -O3 -emit-llvm try_calls_basic.2.c -c -o
2009 Jan 24
2
Reading/Writing the Astdb
All;
I have a question regarding the Astdb. When reading more than a few values, it can
take quite a while to grab several
values in the astdb using say, asterisk -rx "database show" >
output.txt and work with that and then set a new value such as asterisk
-rx "database put $key $value". The whole process can take over 1
second for EACH ENTRY which adds up for more than a
2009 Feb 13
2
Continue processing AGI script after hangup
All;
I wrote a PERL AGI script that prompts a caller to leave a message using
print "RECORD FILE $recordfile wav # 60000 BEEP s=3\n";
When the caller is done, they need to press the # key. The message is then delivered.
However, the message is not delivered if the caller simply hangs up when finished.
If the user hangs up, the script ends right then. How do I keep on processing the
2009 Mar 22
1
Looking for Prepaid Solution
All;
I am looking for a solution a motel that is switching
to VoIP. They are especially interested in prepaid services. That is, a
resident will come to the office and pre-pay for phone services for their room.
When the money runs out, service is shut off, and they need to come down to the
office again. Accurate reports are very important. A search on voip-info.org shows several solutions out
2009 Jul 29
1
Mount errors,....try try again
Warning
this will be a lengthy post. I?ve been beating my head on my desk for days now.
I
have a Samba PDC in an NT4 domain. I have several domain member servers and a
non domain member server.
Versions really don?t matter but for the sake of argument the
systems that are ?working? are all CENTOS 4.7 systems using 3.0.28 Samba.
My procedure is this: I mount a Domain member share on the
non
2009 Jan 06
1
.call file not updating MySQL CDR's
All;
I have implemented an "autodialer" solution where I create .call files for each number to be dialed. The .call file is very simple in design:
Channel: SIP/2405551212 at broadvoice-outbound
Context: autodial
MaxRetries: 5
RetryTime: 600
WaitTime: 60
CallerID: Hildas Cleaning <4105551111>
Extension: 2405551212
Priority: 1
Account: 999
Archive: yes
A problem recently
2009 Apr 27
1
No format for saving voicemail?
All;
I just came accross this problem, and I am a bit stumped. I am using Asterisk 1.4.23.1 and am using Asterisk Realtime Static for voicemail. I have not had a problem before, but now when someone tries to leave a vm, I get the error "No format for saving voicemail?" and Asterisk hangs up the call. According to the docs, Asterisk should default to wav49|gsm|wav. Clearly it is not
2009 Jun 05
2
password authentification
All,
I am trying to setup samba so that it uses the password from my AD instead of having a password file in SAMBA.
I think I have the samab.cnf file setup correctly:
[global]
workgroup = hshh;
security = DOMAIN
auth methods = ntdomain
password server = ttndc3
max xmit = 65535
socket options = TCP_NODELAY IPTOS_LOWDELAY
ldap
2009 May 19
2
[LLVMdev] how to get a deterministic execution
Hello,
For debugging purposes, I've added a unique id member to the Value class:
global_next_vuid = 0;
Value::Value(..){
vuid = ++global_next_vuid;
}
My hope is that by looking at the vuid of a Value, I can see its vuid,
set a conditional breakpoint and re-run the compiler to
see who (what pass) constructed that value.
Maybe I am not doing it the right way, but the above 'vuid'
2009 Oct 02
1
[LLVMdev] alias analysis and functions
Hi,
I am trying to use alias analysis (Anderson) and noticed that for pointers to functions
I don't get the expected result: a pointer that clearly may point to a function is
reported as NoAlias.
I use -anders-aa -aa-eval -print-no-aliases -print-may-aliases -print-must-aliases
Here is a test case:
///////////////try_calls_aliases.c
#include <stdio.h>
typedef int (*PF)();
PF
2008 Mar 11
3
need * consultant in houston area
pls kindly respond to this email
thx !
_________________________________________________________________
Connect and share in new ways with Windows Live.
http://www.windowslive.com/share.html?ocid=TXT_TAGHM_Wave2_sharelife_012008
2009 Sep 30
2
Change directory to implement same programes
HI, R-Users,
I have one problem:
I have written the the programs which process all file in one directory: for example:
setwd("C:/Documents and Settings/lma/My Documents/Vappu-saved/Log") as the start.
..........
But I have many folders like "Vappu-saved" and there are a lot of files in each directory. What I want is using the same program what I write for the above
2009 Oct 09
3
Chanspy
How can i activate "ChanSpy" to spy on a dedicated extension?
I see the following in "/etc/asterisk/extensions_additional.conf"
[chanspy]
include => chanspy-custom
exten => 501**,1,Chanspy(801)
exten => 501**,n,Hangup
exten => 502**,1,Chanspy(802)
exten => 502**,n,Hangup
But when i try to call "501**", it doesn't give any response.
Thanks.
2009 Feb 13
1
linksys PAP2t and asterisk
Hi all:
when i make a call from linksys pap2t to an asterisk server a fake ring is heard some times ,but when sending calls between 2 asterisk servers through sip no fake ring is heard but real one.
any suggestions please.
_________________________________________________________________
Windows Live?: E-mail. Chat. Share. Get more ways to connect.
2008 Oct 08
2
default menu option using vesamenu.c32
Hi,
Maybe I am just not looking in the right spot but I can't figure out how to set a default menu in my isolinux.cfg. This is what it looks like:
PROMPT 0
TIMEOUT 40
DEFAULT /boot/vesamenu.c32
LABEL cubez
MENU LABEL Graphics mode (Compiz) - Experimental
KERNEL /boot/vmlinuz
APPEND vga=0x317 initrd=/boot/initrd.gz ramdisk_size=9999 root=/dev/ram0 rw chexpand=256 load=cubez
2010 Apr 28
1
[LLVMdev] machine pass
Hi,
LLVM documentation is not clear. Is it possible to write a machine pass?
I am trying to insert some machine code before the return instruction.
ideally, I'd like a pass that runs the last one before generating assembly.
How can this be done?
Thank you,
Dan
_________________________________________________________________
Hotmail has tools for the New Busy. Search, chat and
2009 Aug 14
2
no ring tone
how do i troubleshoot no ring tone. It was working and all i added was the lines below now it doesn't ring.
Edit sip_nat.conf for proper NAT:
localnet=192.168.1.0/255.255.255.0 externhost=pbx.DOMAIN.com (Set your external hostname name here)
externrefresh=10
fromdomain=DOMAIN.com (Set your external domain name here)
nat=yes
qualify=yes
canreinvite=no
Add extra codecs to
2009 Oct 29
1
Booting Error for /dev/kmem
Suddenly i found an error while booting, it says:
Fuck: can't open /dev/kmem for read/write (2)
So this is why, the Asterisk and Zaptel can not start.
Any Suggestions Please
Thanks a lot
Torintino
_________________________________________________________________
Windows Live: Make it easier for your friends to see what you?re up to on Facebook.
2009 Nov 05
2
7777 & *65
I found "7777" and "*65" are not working.
Please how can i re-enable them again.
Thanks
_________________________________________________________________
Windows Live: Friends get your Flickr, Yelp, and Digg updates when they e-mail you.