[LTP] [PATCH] sched_getattr/sched_getattr01: Use macro definitions to replace numbers
Cui Bixuan
cuibixuan@huawei.com
Tue Oct 20 14:11:18 CEST 2015
Use 'RUNTIME_VAL','PERIOD_VAL' and 'DEADLINE_VAL' to set attr
Signed-off-by: Cui Bixuan <cuibixuan@huawei.com>
---
.../syscalls/sched_getattr/sched_getattr01.c | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/testcases/kernel/syscalls/sched_getattr/sched_getattr01.c b/testcases/kernel/syscalls/sched_getattr/sched_getattr01.c
index 267b8b1..bf6c5b6 100644
--- a/testcases/kernel/syscalls/sched_getattr/sched_getattr01.c
+++ b/testcases/kernel/syscalls/sched_getattr/sched_getattr01.c
@@ -38,9 +38,9 @@ void *run_deadline(void *data LTP_ATTRIBUTE_UNUSED)
/* This creates a 10ms/30ms reservation */
attr.sched_policy = SCHED_DEADLINE;
- attr.sched_runtime = 10 * 1000 * 1000;
- attr.sched_period = 30 * 1000 * 1000;
- attr.sched_deadline = 30 * 1000 * 1000;
+ attr.sched_runtime = RUNTIME_VAL;
+ attr.sched_period = PERIOD_VAL;
+ attr.sched_deadline = DEADLINE_VAL;
ret = sched_setattr(0, &attr, flags);
if (ret < 0)
--
1.6.0.2
More information about the Ltp
mailing list