Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 228954
b: refs/heads/master
c: 12f7e03
h: refs/heads/master
v: v3
  • Loading branch information
Jiri Pirko authored and Arnaldo Carvalho de Melo committed Jan 10, 2011
1 parent f968356 commit 98ac24b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: aa7bc7ef73efc46d7c3a0e185eefaf85744aec98
refs/heads/master: 12f7e0364375ba1ba55abcc5ac082b68fb526c80
3 changes: 2 additions & 1 deletion trunk/tools/perf/builtin-sched.c
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,8 @@ static void create_tasks(void)

err = pthread_attr_init(&attr);
BUG_ON(err);
err = pthread_attr_setstacksize(&attr, (size_t)(16*1024));
err = pthread_attr_setstacksize(&attr,
(size_t) max(16 * 1024, PTHREAD_STACK_MIN));
BUG_ON(err);
err = pthread_mutex_lock(&start_work_mutex);
BUG_ON(err);
Expand Down

0 comments on commit 98ac24b

Please sign in to comment.