(call-process ...) hangs in emacs
Peter Hull
peterhull90@gmail.com
Tue Aug 5 13:33:00 GMT 2014
On Tue, Aug 5, 2014 at 1:21 PM, Ken Brown <kbrown@cornell.edu> wrote:
> - pthread_mutex_init (&_malloc_mutex, NULL);
> - pthread_mutex_init (&_aligned_blocks_mutex, NULL);
> + pthread_mutexattr_t attr1, attr2;
> + pthread_mutexattr_settype (&attr1, PTHREAD_MUTEX_NORMAL);
> + pthread_mutexattr_settype (&attr2, PTHREAD_MUTEX_NORMAL);
> + pthread_mutex_init (&_malloc_mutex, &attr1);
> + pthread_mutex_init (&_aligned_blocks_mutex, &attr2);
> pthread_atfork (malloc_atfork_handler_prepare,
> malloc_atfork_handler_parent,
> malloc_atfork_handler_child);
Does there need to be a 'pthread_mutexattr_init' in there? I don't
think that's the problem though...
Pete
--
Problem reports: http://cygwin.com/problems.html
FAQ: http://cygwin.com/faq/
Documentation: http://cygwin.com/docs.html
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
More information about the Cygwin
mailing list