similar to: A few questions

Displaying 20 results from an estimated 400 matches similar to: "A few questions"

2004 Aug 06
0
Reloading ices (0.2.3) playlist
Hiya I'm completely stumped on reloading the playlist... If I send ices a SIGHUP signal it appears to reload the Perl module but not execute any code. The messages I'm getting are: DEBUG: Caught SIGHUP, cycling logfiles and reloading playlist... DEBUG: Interpreting [ices_shutdown] DEBUG: perl [ices_shutdown] returned 1 values, last [1] DEBUG: Done interpreting [ices_shutdown] DEBUG:
2004 Aug 06
0
ices: PQueue module error
Hi All-- I'm trying to get icecast working with ices, but I'm having a problem with the PQueue module. I'm including my ices.connf file and verbose output when running in non-daemon mode below. I'm running on Fedora Core 1, and have all packages updated (via yum). I'd greatly appreciate any insights. Jim <p><?xml version="1.0"?>
2005 Mar 06
2
Ices0 v. 0.4 Skip Song
Hello all Ive just discover that ices0 can encode {.ogg,.flac,.mp3} to mp3 streams!.. greate! the script thing is wonderfull. in my script i have defined ices_init ices_shutdown ices_get_next all works greate. Now, i want be able users to skip the song that is been streamd. for that, kill -s SIGUSR1 IcesPid works greate but.. for the songs i have setup a ranking field in a sql database.
2007 Dec 25
2
about playlist handler in ices-0.4
Hi... i would like know how to one playlist handler whith perl? where a search one "HOW TO" thanks.. -- ALPHANET INFORM?TICA LTDA www.alphanetbh.com.br Belo Horizonte MG Leandro Campos (31)30726251 (31)87883925 -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/icecast/attachments/20071226/c577c111/attachment.htm
2004 Aug 06
0
Parse error in ices.pm
We have installed IceCast2 and Ices0.3 and it works very well - with builtin playlist! When I write my own playlist handler - similar to the preconfigured ices.pm.dist - I get a perl_parse() error while starting ices. So ices exits. --- Code: --- # At least ices_get_next must be defined. And, like all perl modules, it # must return 1 at the end. # Function called to get the next filename to
2008 Oct 15
1
Problem building Perl net-snmp
Hi I'm trying to build the perl modules of net-snmp-5.4.2. Everything seems to work fine until "make test"[1]. The problem with "DynaLoader.pm" seems to be an old one. The machine is Centos 5.2 i386 I'm trying to build instead of using the one available in the repos because I'll build in other platforms and also in nagios-plugins. Thanks Marcelo [1]
2007 May 11
0
[LLVMdev] Instruction::getNext and Instruction::getPrev are private
Thanks Antont and Gabor.. I will use the iterator instead.. On 5/11/07, Anton Korobeynikov <asl at math.spbu.ru> wrote: > Hello, Ferad. > > > I switched to the upcoming version 2.0 branch and porting my code from > > 1.9. Thanks there is not a lot to do. I found that > > Instruction::getNext and Instruction::getPrev are private. Is this > > intentional? >
2005 Feb 07
0
[LLVMdev] Segmentation Fault(Modifying BasicBlockPlacement.cpp)
Hi, I have been trying to randomize blocks in a program and modified "BasicBlockPlacement.cpp" for the purpose but getting segmentation fault.I am not able to determine the problem.Can anyone please decrypt these error messages or suggest what might be the possible cause of failure? -----------------------------------------------------------------------------------------------------
2007 Sep 19
0
[LLVMdev] 2.1 Pre-Release Available (testers needed)
On Wed, Sep 19, 2007 at 05:24:12PM +1000, Emil Mikulic wrote: > http://goanna.cs.rmit.edu.au/~emil/llvm2.1-check-debug.txt Here's an ARM test that cores: $ llvm-as < /home/emil/ll/llvm-2.1/test/CodeGen/ARM/2007-01-19-InfiniteLoop.ll | llc -march=arm -mattr=+v6,+vfp2 Segmentation fault (core dumped) $ gdb `which llc` llc.core [...] (gdb) where #0 0x0853d606 in
2007 May 11
0
[LLVMdev] Instruction::getNext and Instruction::getPrev are private
Hi, I switched to the upcoming version 2.0 branch and porting my code from 1.9. Thanks there is not a lot to do. I found that Instruction::getNext and Instruction::getPrev are private. Is this intentional? If yes, what would you recommend instead using them? Thanks, Ferad
2011 Nov 14
0
[LLVMdev] ilist::getPrevNode asserts on list head
Hi all, I am finding a SEGFAULT in one of my passes when using getPrevNode on an instruction that is the only one in a BasicBlock. I was expecting getPrevNode to return 0 in that case (as per docs), but it breaks. I guess the code in in ilist_node.h: NodeTy *getPrevNode() { NodeTy *Prev = this->getPrev(); // Check for sentinel. if (!Prev->getNext()) return 0; return Prev; }
2004 Aug 06
0
Metadata once more...with Ices
On Thursday, 28 March 2002 at 05:05, Cédric Mallet wrote: > dimanche 24 mars 2002, 21:42:54, Brendan Cully a écrit : > > >> I also had strange results when commenting this function (in that case > >> it is supposed to stream the name of the song, by reading the IdTag). With > >> Winamp, I didn't get anything ("unnamned"), with XMMS, I had the proper
2007 Dec 05
3
[LLVMdev] Inserting Instructions After Instructions
Dear All, Given a pointer to an instruction, what is the easiest way to insert one or more new instructions after that instructions? We used to find the next instruction using Instruction::getNext(), but this method seems to have been made private now. -- John T.
2007 May 17
0
[LLVMdev] API changes (was Antw.: 2.0 Pre-release tarballs online)
On Thu, 17 May 2007, Bram Adams wrote: > About LTO support: the new release documents don't mention anything about > this. Also, the relevant bugzilla entries I could find date back to March > 2007. Has any progress been made recently in adding LTO to the Darwin linker > and/or GNU binutils? I'll mention this in the release notes. The darwin linker in 10.5 (not yet
2007 Sep 19
2
[LLVMdev] 2.1 Pre-Release Available (testers needed)
Is this the same issue as PR1686? If so, please add to it. What kind of host machine are you using? Thanks, Evan On Sep 19, 2007, at 12:45 AM, Emil Mikulic wrote: > On Wed, Sep 19, 2007 at 05:24:12PM +1000, Emil Mikulic wrote: >> http://goanna.cs.rmit.edu.au/~emil/llvm2.1-check-debug.txt > > Here's an ARM test that cores: > > $ llvm-as <
2005 Feb 07
2
[LLVMdev] Segmentation Fault(Modifying BasicBlockPlacement.cpp)
On Mon, 7 Feb 2005, Tanu Sharma wrote: > I have been trying to randomize blocks in a program and modified > "BasicBlockPlacement.cpp" for the purpose but getting segmentation > fault.I am not able to determine the problem.Can anyone please decrypt > these error messages or suggest what might be the possible cause of > failure? I'd be happy to fix this, but I need
2005 Feb 07
0
[LLVMdev] Segmentation Fault(Modifying BasicBlockPlacement.cpp)
Thanks a lot for replying Chris, I m trying to randomize the blocks in a program.I generate a random number( between the current "InsertPos" and the last block), and then iterate through the list of basicblocks , picking up block with position equal to that of the random number and place it into the current InsertPos and increment InsertPos. Running it like this:
2004 Aug 06
0
No subject
- 0.2.1 2001-07-12 - Thread stack size increased, to prevent segfaults during metadata updates on Solaris, FreeBSD, OpenBSD, and probably anything that isn't Linux. - Sleep code fixed to work better on other platforms. Solaris users should be happy. - All playlist functions but ices_get_next made optional. - Compatibility
2009 Jun 23
2
[LLVMdev] lli aborts on arm QEMU
I get the following error when I try to run arm lli on QEMU: lli: llvm-arm/src/llvm/include/llvm/ADT/ilist.h:197: typename bidirectional_iterator<NodeTy, int>::reference llvm::ilist_iterator<NodeTy>::operator*() const [with NodeTy = llvm::RecyclerStruct]: Assertion `Traits::getNext(NodePtr) != 0 && "Dereferencing end()!"' failed. 0 lli 0x006abbfc Stack dump: 0.
2009 Jan 16
1
[LLVMdev] Problem using ilist container
Hi All, I have just started using LLVM . i am facing a issue while using ilist container. Here is a struct with ilist container as its one element. typedef ilist<Instruction *> InstListType; struct list_node { int Impact; InstListType InstList; }; list_node