tests/sched_xetparam.c: print syscall() result using %ld format

This commit is contained in:
Дмитрий Левин 2016-04-21 21:17:46 +00:00
parent 3f470d83de
commit 61042d491b

View File

@ -11,16 +11,17 @@
int
main(void)
{
struct sched_param *const param = tail_alloc(sizeof(struct sched_param));
int rc = syscall(__NR_sched_getparam, 0, param);
printf("sched_getparam(0, [%d]) = %d\n",
struct sched_param *const param =
tail_alloc(sizeof(struct sched_param));
long rc = syscall(__NR_sched_getparam, 0, param);
printf("sched_getparam(0, [%d]) = %ld\n",
param->sched_priority, rc);
param->sched_priority = -1;
rc = syscall(__NR_sched_setparam, 0, param);
printf("sched_setparam(0, [%d]) = %d %s (%m)\n",
param->sched_priority, rc,
errno2name());
printf("sched_setparam(0, [%d]) = %ld %s (%m)\n",
param->sched_priority, rc, errno2name());
puts("+++ exited with 0 +++");
return 0;