mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-30 00:01:50 +00:00
Bug 759677 - Increase cubeb_run_thread stack size to avoid blowing the stack with some ALSA configurations. r=doublec
This commit is contained in:
parent
5168196f12
commit
b4e55eeefb
@ -5,4 +5,4 @@ Makefile.in build files for the Mozilla build system.
|
||||
|
||||
The cubeb git repository is: git://github.com/kinetiknz/cubeb.git
|
||||
|
||||
The git commit ID used was 612118caa85bee3f0ed1e169d54f78305ad39c72.
|
||||
The git commit ID used was 6a6ed2607e3c457768659495532c58480df1e40d.
|
||||
|
@ -517,7 +517,7 @@ cubeb_init(cubeb ** context, char const * context_name UNUSED)
|
||||
r = pthread_attr_init(&attr);
|
||||
assert(r == 0);
|
||||
|
||||
r = pthread_attr_setstacksize(&attr, PTHREAD_STACK_MIN);
|
||||
r = pthread_attr_setstacksize(&attr, 256 * 1024);
|
||||
assert(r == 0);
|
||||
|
||||
r = pthread_create(&ctx->thread, &attr, cubeb_run_thread, ctx);
|
||||
|
Loading…
Reference in New Issue
Block a user