Displaying 4 results from an estimated 4 matches for "pthread_cancel_en".
2002 Jan 02
2
macosx (lots of little changes)
...nknown state */
- pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
+ pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &dummy_o);
<p> close_audio_devices (reopen_arg->devices);
@@ -113,7 +114,7 @@
free(reopen_arg->format);
free(reopen_arg);
- pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL);
+ pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &dummy_o);
}
<p>I don't like being required to go get libcurl (needs a teeny bit of
autoconf tweaking to add -DNO_CURL as needed (there is already a check
for -lcurl))
--- ogg123/http_transport.c.orig Wed Jan 2...
2002 Jan 02
2
macosx (lots of little changes)
...nknown state */
- pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, NULL);
+ pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &dummy_o);
<p> close_audio_devices (reopen_arg->devices);
@@ -113,7 +114,7 @@
free(reopen_arg->format);
free(reopen_arg);
- pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, NULL);
+ pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, &dummy_o);
}
<p>I don't like being required to go get libcurl (needs a teeny bit of
autoconf tweaking to add -DNO_CURL as needed (there is already a check
for -lcurl))
--- ogg123/http_transport.c.orig Wed Jan 2...
2006 Apr 04
0
Need help debugging (long)
...e=0xb7d76f11 "gconv_db.c", line=232,
function=0xb7d76f36 "__gconv_release_step") at assert.c:50
50 {
(gdb) 54 FATAL_PREPARE;
(gdb) __pthread_setcancelstate (state=1, oldstate=0x0)
at pthread_setcancelstate.c:29
29 {
(gdb) 32 if (state < PTHREAD_CANCEL_ENABLE || state >
PTHREAD_CANCEL_DISABLE)
(gdb) 37 int oldval = THREAD_GETMEM (self, cancelhandling);
(gdb) 42 : oldval & ~CANCELSTATE_BITMASK);
(gdb) 45 if (oldstate != NULL)
(gdb) 52 if (oldval == newval)
(gdb) 57 int curval = T...
2011 Jul 18
5
[PATCH v3 0/5] btrfs-progs: scrub interface
This is the next patch series for scrub userland tools.
Change log v1->v2:
- commands now reachable as "btrfs scrub ..." instead of "btrfs filesystem
scrub ..."
- ability to scrub a single device instead of a whole file system
- superfluous command line options removed
- resume is now a separate command ("scrub resume") instead of "scrub start -r"
-