gpt4 book ai didi

c - c 库中的线程安全说明

转载 作者:太空宇宙 更新时间:2023-11-04 00:48:28 25 4
gpt4 key购买 nike

有人可以向我澄清以下代码是否是线程安全的吗?

int get_time(uint64_t *time)
{
struct timespec spec;
if (!time)
return -EFAULT;
if (clock_gettime(CLOCK_REALTIME, &spec) == -1)
return -errno;
*time = //convert timespec into nanoseconds
return SUCCESS;
}

这是一个库中的 API,可以被多个线程调用。spec 是一个局部变量,所以它应该不是问题。正确的?我的疑问是关于 clock_getime (POSIX.1-2001) 和时间参数的分配。我想引入一个互斥量,但我不确定它是否是严格要求的。

最佳答案

除了在代码中使用自动变量外,您什么都没有使用,并且唯一的函数调用 ( clock_gettime) 本质上是线程安全的,所以答案是:

是的,它很安全。

From the POSIX spec :

3.396 Thread-Safe

A function that may be safely invoked concurrently by multiple threads. Each function defined in the System Interfaces volume of IEEE Std 1003.1-2001 is thread-safe unless explicitly stated otherwise. Examples are any "pure" function, a function which holds a mutex locked while it is accessing static storage, or objects shared among threads.

该函数的规范中没有列出异常:
http://pubs.opengroup.org/onlinepubs/009695399/functions/clock_getres.html

关于c - c 库中的线程安全说明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28112780/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com