1
vote
1answer
29 views

Mac OS X pthreads fake return address

In the OS X pthreads implementation (http://www.opensource.apple.com/source/Libc/Libc-825.26/pthreads/thread_setup.c?txt) they provide a fake return address on the thread stack (line 140): ...
0
votes
1answer
21 views

Crash in pthread_specific() on Mac OS X

I'm getting a crash in pthread_specific() on OS X Lion using a 32-bit server application written with FPC and Indy 10 on Mac OS X. I'm finding it very hard to track down the cause. The crash occurs ...
12
votes
1answer
192 views

Crash of Garbage Collection Work Queue if dylib is loaded

We are porting an app from 10.6 to 10.8. I am looking at dylib we load in app. I am facing very unusual crash in Garbage Collection Work Queue with following message. malloc: Thread::suspend(): ...
0
votes
0answers
43 views

OSX pthreads: cthread_set_errno_self segfault

I am having a small problem every now and again where my program segfaults immediately after creating a new thread. The new thread has a backtrace like: Thread 24 Crashed: 0 libsystem_c.dylib ...
1
vote
1answer
88 views

How can I tell if the current thread was created as an NSThread?

I get C++ callbacks from a purchased media-streaming SDK Library, that creates several threads internally. Specifically, I receive callbacks when the library wants to log a message. Sometimes I'm ...
-1
votes
1answer
255 views

Get current pthread cpu usage Mac OS X [closed]

How can I get a thread's cpu time from the thread itself in Mac OS X ? For linux, what I do is getrusage(RUSAGE_THREAD, &ru) but this solution isn't available for Mac OS X. I came across this ...
0
votes
0answers
70 views

pthread_cleanup_pop() do not work as expected in Mac OS X

I want to test the pthread_cleanup_pop's behavior in Mac OS X. So I list these code copied from APUE: #include <pthread.h> #include <stdio.h> void cleanup(void *arg) { ...
4
votes
3answers
232 views

pthread_mutex_init vs sem_init (Unshared)

I am looking at changing some code that I would like to run on linux, unix, and OSX. There are some calls in the code for a sem_init, but the pshared value is set to zero. I did some reading in the ...
1
vote
2answers
419 views

alternative to pthread_timedjoin_np

I am trying to figure out how to get rid of a reliance on the pthread_timedjoin_np because I am trying to build some code on OSX. Right now I have a Queue of threads that I am popping from, doing ...
1
vote
1answer
283 views

pthread_cond_timedwait ignores cancellation request

I've got a strange problem with pthread_cond_timedwait(): according to the POSIX specification it is a cancellation point. However, when I'm calling pthread_cancel() on the thread, it never gets ...
1
vote
1answer
545 views

How to tell netbeans information on pthread_barrier_t

I can't seem to get netbeans to recognize the pthread_barrier_t type. I can type in #include<pthread.h> okay, but no luck on pthread_barrier_t. The following is the build and the error: ...
0
votes
2answers
2k views

Pthread and gcc compiling issue on OS X

I have a script that compiles fine on Linux (Ubuntu 11.04), but not on OS X (Lion). gcc -pthread -o hw1 hw1.c hw1.c:22: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘barr’ hw1.c: ...
0
votes
2answers
185 views

Recursive pthread_rwlock_rdlock on Mac OS X/Darwin

I have following sample code (see code below) that does by thread: A: rd-lock B: wr-lock (waiting) A: rd-lock (recursive) A: rd-unlock (recursive) A: rd-unlock B: wr-locked (wake after wait) B: ...
1
vote
3answers
683 views

Does Mac OS X have pthread_spinlock_t type?

I didn't find it in Mac, but almost all Linux os support it.. Any one knows how to port it to mac?
0
votes
1answer
109 views

pthread failure to join with unknown error

I'm planning using pthreads and mach semaphores to try to basically farm out a parallel computation to a limited number of CPUs, and I can't quite get a test program to work. Right now I have ...
5
votes
1answer
805 views

pthread_join crashes intermittently with segmentation fault on OSX

I'm getting a segmentation fault while joining on a child thread and I've exhausted all options I could think of debugging, looking on Stack-overflow and the rest of the Internet! :) I'll be as ...
1
vote
2answers
254 views

How can I get pianobarfly to compile correctly on OS X?

I'm trying to get pianobarfly working on OS X and can't get it to compile correctly. Selected text from the install document: Dependencies ------------ gmake libao ...
-1
votes
3answers
250 views

GNU Makefile, c programming

my current makefile looks likes this all: hello hello: hello.o clang -o hello hello.o hello.o: hello.c clang -Wall -std=c99 -c -o hello.o hello.c -lpthread clean: rm -f *.o *exe hello ...
2
votes
2answers
304 views

Error when compiling

I am trying to compile this code: /* Includes */ #include <unistd.h> /* Symbolic Constants */ #include <sys/types.h> /* Primitive System Data Types */ #include <errno.h> ...
0
votes
1answer
1k views

Is it possible to set pthread CPU affinity in OS X?

In Linux there is a sched_setaffinity() function defined in sched.h, but I can't seem to find anything like that in Mac OS X 10.6 pthreads implementation... If it is not possible to set affinity, what ...
0
votes
1answer
113 views

Finding creator of crashed thread in OS X/gdb?

let's say I'm in gdb and have a call stack like this: Thread 24 (process 6449): #0 0x994010e2 in semaphore_wait_signal_trap () #1 0x9942ec9c in _pthread_cond_wait () #2 0x9947745f in ...
1
vote
3answers
388 views

Pthread RWLock on MAC Deadlocking but not on Linux?

I've been experimenting with rwlock's on Mac and am experiencing something that seems to me shouldn't be happening. There's some weird combination of using read/write locks with recursive read locks ...
1
vote
1answer
498 views

Bus error on OSX - pthreads

am trying to get my head around the following: Have a small program am trying to port to OSX(intel) which calls function doWork() via pthread_create, in the function, I start by creating an array of ...
0
votes
2answers
196 views

C - massive # of posix threads spinning out of control and no longer creating new ones

I have an assignment in class that requires us to use POSIX threads and create n*(n-1)/2 of them to process a dataset of n elements. You can think of it as basically the classical "handshake" in ...
1
vote
1answer
830 views

Mac OS X port crashes in pthread_setspecific in glibstdc++ vsnprintf - how to troubleshoot?

I'm testing a Mac OS X port of my multithreaded server. It starts up, but it dies in vsnprintf soon after the first client request is taken by a worker thread. It seems that vsnprintf is trying to ...
7
votes
2answers
4k views

Mac/iPhone: Is there a way to get a thread identifier without using Objective-C?

Is there a way to get any kind of thread identifier of the currently running thread without resorting to Objective-C's NSThread. I'm improving our custom debug tracing system to handle multiple ...
14
votes
1answer
4k views

sem_init on OS X

I am working on some code which uses the pthread and semaphore libraries. The sem_init function works fine on my ubuntu machine, but on OS X the sem_init function has absolutely no effect. Is there ...
1
vote
3answers
5k views

Pthreads in Mac OS X - Mutexes issue

I'm trying to learn how to program parallel algorithms in C using POSIX threads. My environment is a Mac OS X 10.5.5 with gcc 4. Compiling: gcc -Wall -D_REENTRANT -lpthread source.c -o test.o So, ...
2
votes
2answers
1k views

Pthread id from pthread_self() doesn't match data from dtrace script

I'm using this dtrace script from here to try to find when context switches occur for the threads of a java program. I'm trying to match the data gathered from the script with trace data gathered ...