diff options
author | Jeremy Erickson <jerickso@cs.unc.edu> | 2012-09-06 11:12:30 -0400 |
---|---|---|
committer | Jeremy Erickson <jerickso@cs.unc.edu> | 2012-09-06 11:12:30 -0400 |
commit | fb2ae5ba3d5d8602f8c6a2a57158c95dc00706e4 (patch) | |
tree | da9beab10d3e33aa7ef25d4ba3b548ab1b51a1c2 | |
parent | adabb0fa4f3240fbf425541dd0fd07285164a090 (diff) |
Proper CPU affinity to support clustered scheduling
-rw-r--r-- | bin/fmlp_test_task.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/fmlp_test_task.c b/bin/fmlp_test_task.c index 528585d..0ecd5cc 100644 --- a/bin/fmlp_test_task.c +++ b/bin/fmlp_test_task.c | |||
@@ -186,8 +186,8 @@ void* rt_thread(void *tcontext) | |||
186 | CALL( init_rt_thread() ); | 186 | CALL( init_rt_thread() ); |
187 | 187 | ||
188 | ctx->semaphore = open_fmlp_sem(ctx->fd, 0); | 188 | ctx->semaphore = open_fmlp_sem(ctx->fd, 0); |
189 | CALL( sporadic_task_ns(ctx->exec, ctx->period, 0, ctx->split, 0, | 189 | CALL( sporadic_task_ns(ctx->exec, ctx->period, 0, ctx->split, 1, |
190 | RT_CLASS_HARD, PRECISE_ENFORCEMENT, 0)); | 190 | RT_CLASS_HARD, PRECISE_ENFORCEMENT, 1)); |
191 | 191 | ||
192 | 192 | ||
193 | /***** | 193 | /***** |