From 8ac6c7a54ed1b98d142dce24b11c6de6a1e239a5 Mon Sep 17 00:00:00 2001 From: hc <hc@nodka.com> Date: Tue, 22 Oct 2024 10:36:11 +0000 Subject: [PATCH] 修改4g拨号为QMI,需要在系统里后台执行quectel-CM --- kernel/tools/testing/selftests/proc/proc-uptime-002.c | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/kernel/tools/testing/selftests/proc/proc-uptime-002.c b/kernel/tools/testing/selftests/proc/proc-uptime-002.c index e7ceabe..7d0aa22 100644 --- a/kernel/tools/testing/selftests/proc/proc-uptime-002.c +++ b/kernel/tools/testing/selftests/proc/proc-uptime-002.c @@ -17,6 +17,7 @@ // while shifting across CPUs. #undef NDEBUG #include <assert.h> +#include <errno.h> #include <unistd.h> #include <sys/syscall.h> #include <stdlib.h> @@ -54,7 +55,7 @@ len += sizeof(unsigned long); free(m); m = malloc(len); - } while (sys_sched_getaffinity(0, len, m) == -EINVAL); + } while (sys_sched_getaffinity(0, len, m) == -1 && errno == EINVAL); fd = open("/proc/uptime", O_RDONLY); assert(fd >= 0); -- Gitblit v1.6.2