From 7f9ccd3c809afa6b54f0d453f2edcc8367a6aeb8 Mon Sep 17 00:00:00 2001 From: zhkag Date: Sat, 7 Jan 2023 07:41:52 +0000 Subject: [PATCH] =?UTF-8?q?=E6=A0=BC=E5=BC=8F=E5=8C=96=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- components/libc/posix/ipc/mqueue.c | 2 +- components/lwp/lwp_syscall.c | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/components/libc/posix/ipc/mqueue.c b/components/libc/posix/ipc/mqueue.c index 95150199c8..4ab471c446 100644 --- a/components/libc/posix/ipc/mqueue.c +++ b/components/libc/posix/ipc/mqueue.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006-2021, RT-Thread Development Team + * Copyright (c) 2006-2023, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * diff --git a/components/lwp/lwp_syscall.c b/components/lwp/lwp_syscall.c index 7fd20f4019..16ac7e99ee 100644 --- a/components/lwp/lwp_syscall.c +++ b/components/lwp/lwp_syscall.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2006-2021, RT-Thread Development Team + * Copyright (c) 2006-2023, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * @@ -68,11 +68,11 @@ #include "lwp_ipc_internal.h" #include #ifndef GRND_NONBLOCK -#define GRND_NONBLOCK 0x0001 +#define GRND_NONBLOCK 0x0001 #endif /* GRND_NONBLOCK */ #ifndef GRND_RANDOM -#define GRND_RANDOM 0x0002 +#define GRND_RANDOM 0x0002 #endif /*GRND_RANDOM */ #define SET_ERRNO(no) rt_set_errno(-(no)) @@ -4271,7 +4271,7 @@ int sys_mq_timedsend(mqd_t mqd, const char *msg, size_t len, unsigned prio, cons kmsg = (char *)kmem_get(len + 1); if (!kmsg) return -ENOMEM; - + lwp_get_from_user(&at_k, (void *)at, sizeof(struct timespec)); lwp_get_from_user(kmsg, (void *)msg, len + 1); ret = mq_timedsend(mqd, kmsg, len, prio, &at_k);