search for: pthread_cancel

Displaying 20 results from an estimated 37 matches for "pthread_cancel".

2008 Nov 07
2
[LLVMdev] CBE errors
...n.bc main.cpp $ llc -f -march=c main.bc $ gcc -c main.cbe.c main.cbe.c:223: warning: conflicting types for built-in function ‘malloc’ main.cbe.c: In function ‘main’: main.cbe.c:254: warning: return type of ‘main’ is not ‘int’ main.cbe.c: In function ‘__tcf_0’: main.cbe.c:286: error: ‘_ZL22__gthrw_pthread_cancelm’ undeclared (first use in this function) main.cbe.c:286: error: (Each undeclared identifier is reported only once main.cbe.c:286: error: for each function it appears in.) Here are the relevant lines from main.cbe.c. Notice that "pthread_cancel" is declared as a weak external symbo...
2004 Aug 06
2
pthread_cancel error
Hello, I get the following error when I kill icecast. I am running icecast2 from source on a debian unstable box. I have looked around google and tried a couple of suggestions like moving and linking the libgcc library around, without any luck. "libgcc_s.so.1 must be installed for pthread_cancel to work?" Anyone have any suggestions? Thanks, Alex Martin shorewall@rettc.com http://www.rettc.com --- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org&...
2014 Mar 01
1
running postlogin script result in libgcc_s.so.1 must be installed for pthread_cancel to work
...executable = pop3 postlogin } service postlogin { executable = script-login /etc/dovecot/popafter.sh user = $default_internal_user unix_listener postlogin { } } In my popafter.sh I call a php script, and that result in: dovecot: postlogin: Error: libgcc_s.so.1 must be installed for pthread_cancel to work dovecot: postlogin: Error: Aborted (core dumped) I have tried google it, but cannot find a solution there works for me, anybody who can help me? mail dovecot $ sudo dovecot -n # 2.0.19: /etc/dovecot/dovecot.conf # OS: Linux 3.2.0-59-generic x86_64 Ubuntu 12.04.4 LTS ext4 disable_plainte...
2004 Aug 06
1
pthread_cancel error
...told me? Maybe you are suggesting it is a debian related bug? Thanks, Alex Martin http://www.rettc.com ----- Original Message ----- From: "Karl Heyes" <karl@xiph.org> To: "icecast" <icecast@xiph.org> Sent: Wednesday, April 21, 2004 2:09 PM Subject: Re: [icecast] pthread_cancel error <p>> On Wed, 2004-04-21 at 20:48, Alex Martin wrote: > > Hello, > > > > I get the following error when I kill icecast. I am running icecast2 from > > source on a debian unstable box. I have looked around google and tried a > > couple of suggestions like...
2012 Mar 09
1
[PATCH 1/2] Close all file descriptors in the recovery process.
From: "Richard W.M. Jones" <rjones at redhat.com> If the parent process uses a pipe (or any fd, but pipes are a particular problem), then the recovery process would hold open the file descriptor(s) of the pipe, meaning that it could not be fully closed in the parent. Because the recovery process doesn't use exec(2), this wasn't avoidable even using FD_CLOEXEC. Avoid this
2011 Aug 19
1
[LLVMdev] Break operands into multiple instructions
...I am creating an instrumentation pass using LLVM libraries. I am using clang++ (version 2.9) to compile cpp code into LLVM bit code. When I generate the llvm bit code using clang++ using -O3, I get many instances of instructions that look like the following. br i1 icmp ne (i8* bitcast (i32 (i32)* @pthread_cancel to i8*), i8* null), label %bb23, label %bb25 Here three LLVM instructions are used in one instruction, namely br, icmp and bitcast. Is there a way to tell clang++ to break the operand of br into 3 separate instructions or a pass that exists that does it. Ideally, I would like to see the following...
2018 Jun 08
4
vanilla build of 7.7p1 release on linux/4.17 fails with gcc8 @ "/usr/bin/ld: unrecognized option '-Wl,-z,retpolineplt'"
On 8 June 2018 at 10:52, PGNet Dev <pgnet.dev at gmail.com> wrote: [...] > So, there's a problem for OpenSSH build with spec'ing LD=/usr/bin/ld ? in this particular case, apparently yes. not generally, though. [...] > What's *intended* re: openssh? Support for LD=ld or only =gcc, or undef'd ? Well the intent is you should be able to set CC and LD to whatever you
2009 May 08
2
Wine fails to load programs
...t's see what we get from there. Reply: " Re: Wine fails to load programs Plain termiminal gets this reply: Code: peter at shop:~$ wine mailwasher wine: could not load L"C:\\windows\\system32\\mailwasher.exe": Module not found peter at shop:~$ libgcc_s.so.1 must be installed for pthread_cancel to work wine client error:12: write: Bad file descriptor libgcc_s.so.1 must be installed for pthread_cancel to work err:seh:raise_exception Unhandled exception code 80000101 flags 1 addr 0xf7f82425 wine client error:12: write: Bad file descriptor libgcc_s.so.1 must be installed for pthread_cancel t...
2013 Nov 08
2
Problems with dovecot 2.1.7, spamassassin 3.3.2 and antispam plugin
...accessing either one. That is, I've tested with FuzzyOcr enabled, and it fails on the db access to the FuzzyOcr DB, and I've tried it with FuzzyOcr disabled. In that case, it fails on the access to the bayes DB. The error line right there is : libgcc_s.so.1 must be installed for pthread_cancel to work Since sa-learn terminated prematurely, the bayes DB isn't updated at all. Running /usr/bin/sa-learn or the script /usr/local/bin/sa-learn-pipe.sh directly from cmdline works fine though - sa-learn completes correctly and updates the bayes DB properly, I can see the new tokens....
2018 Jun 08
4
vanilla build of 7.7p1 release on linux/4.17 fails with gcc8 @ "/usr/bin/ld: unrecognized option '-Wl,-z,retpolineplt'"
On 8 June 2018 at 11:21, PGNet Dev <pgnet.dev at gmail.com> wrote: > fyi > > add'l -- and looks unrelated -- issue > /usr/include/pthread.h:251:12: note: previous declaration of ?pthread_join? was here > extern int pthread_join (pthread_t __th, void **__thread_return); What included pthread.h? That's explicitly not supported by sshd: $ grep THREAD
2008 Nov 08
0
[LLVMdev] CBE errors
Hello, Jeffrey > Here are the relevant lines from main.cbe.c. Notice that > "pthread_cancel" is declared as a weak external symbol, but > "_ZL22__gthrw_pthread_cancelm" is never declared (even though it is > used). This is bug in CBE. Please fill problem report in LLVM bugzilla. -- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechanics, S...
2008 Nov 11
1
[LLVMdev] CBE errors
On Nov 8, 2008, at 10:12 AM, Anton Korobeynikov wrote: >> Here are the relevant lines from main.cbe.c. Notice that >> "pthread_cancel" is declared as a weak external symbol, but >> "_ZL22__gthrw_pthread_cancelm" is never declared (even though it is >> used). > This is bug in CBE. Please fill problem report in LLVM bugzilla. I submitted a request for a bugzilla account last week, but I have not yet...
2012 Mar 31
1
modifying open_guest function (copy_over.c)
It works, but I should delete if (guestfs_umount_all (destg) == -1) ??? exit (EXIT_FAILURE); inmain() function and /* Clean up. */ ? if (guestfs_umount_all (srcg) == -1) { ??? pthread_cancel (threaddata->mainthread); ??? exit (EXIT_FAILURE); ? } in the start_scrthread() function or it will return an error after the program finish: libguestfs: error: umount_all: umount: /sys/fs/cgroup/systemd: umount: /sys/fs/cgroup/systemd: device is busy. ??????? (In some cases useful info about...
2013 Feb 13
1
vorbis-tools 1.4.0, ogg123 and MinGW
...; } ptw32_handle_t; typedef ptw32_handle_t pthread_t; The configure test to check if pthreads is available is: int main () { pthread_t th; pthread_join(th, 0); pthread_attr_init(0); pthread_cleanup_push(0, 0); pthread_create(0,0,0,0); pthread_cancel(0); pthread_cleanup_pop(0); ; return 0; } It's assuming a pthread_t could be equal to 0 (an int) which fails when building with MinGW. I changed the code as follows and it at least causes configure to find my pthread library. pthread_t th; pthread_join(th, 0); pthrea...
2005 Mar 16
1
openssh-3.8.1p1, with pthreads enabled, hung in pthread_join.
I connect to my OpenSSH 3.8.1p1 server and when the password dialog shoes up I wait a min or so, long enough for the "Timeout before authentication for %s" alarm to trigger. If at that point I enter my password ssh will just sit there: debug2: input_userauth_info_req debug2: input_userauth_info_req: num_prompts 1 Password: debug3: packet_send2: adding 32 (len 18 padlen 14 extra_pad
2016 Apr 13
5
antispam plugin, pipe backend, how to make it work?
...ipt to make it work. It seems like the sa-learn call silently fails: "/usr/local/bin/sa-learn-pipe.sh" 10L, 350C geschrieben root at vm10:/etc/dovecot/conf.d# cat /tmp/sa-learn-pipe.log starting log 25200-start (--username=johannes at rohr.org --spam) libgcc_s.so.1 must be installed for pthread_cancel to work 25200-end Does the above error message have anything to do with it? Running the script & sa-learn manually works fine. do virtual users change something how dovecot calls programs, such as chrooting them? Cheers, Johannes Am 13.04.2016 um 09:45 schrieb Johannes Rohr: > Am 13.0...
2009 Jan 29
1
Install on debian etch 64bit
...tp://www.freetype.org err:module:load_builtin_dll failed to load .so lib for builtin L"winex11.drv": libSM.so.6: Ne peut ouvrir le fichier d'objet partag?: Aucun fichier ou r?pertoire de ce type CMD version 1.1.13 And my program crash on : Code: libgcc_s.so.1 must be installed for pthread_cancel to work PLzzz help, my website can't work without wine :(
2007 Jun 25
1
Threading troubles 1.4.5 & IAX2-> SIP (FreeBSD specific??)
...(even on a dedicated 1G network) and also with G729 (but a tad more calls). It appears to happen using both trunking and non-trunking modes. This happened with DONT_OPTIMIZE setting on or off, but with it ON it doesn;t dump core. At least when it was dumping core, it appeared to have been in the pthread_cancel calls. We've recompiled the PBX asterisk with no threading, and the milliwat/etc. tests to the vrouter from the SIP phones ran clean (other than when we pushed the bandwidth limits <grin>) This morning it was consistently the agent (on the SIP Phones) who could hear the remote side com...
2002 Jan 11
1
linking R against MKL
...ocal/include conftest.c -lmkl32_p3 -L/usr/lib -lg2c -lm -L/usr/lib/gcc-lib/i586-mandrake-linux/2.95.3 -L/usr/i586-mandrake-linux/lib -lm -ldl -lncurses -lm -L/usr/local/lib 1>&5 /usr/lib/libmkl32_p3.a(smp.o): In function `smp_setnprocessors': smp.o(.text+0x2ce): undefined reference to `pthread_cancel' /usr/lib/libmkl32_p3.a(smp.o): In function `smp_init': smp.o(.text+0x462): undefined reference to `pthread_create' collect2: ld returned 1 exit status configure: failed program was: #line 8191 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype...
2003 Nov 27
13
Asterisk behind NAT << How to do it.
Thanks to ww and his patch on bug #104, I have successfully implemented Asterisk behind NAT without using STUN or anything crazy. It's quite straight forward. Until this gets tested enough and put into CVS, you will have to patch your chan_sip.c file to do this. I'm sure within the next few days this will get put merged into CVS if no one finds any problems. I tried this on chan_sip.c