这些线程安全吗?

发布于 2024-09-24 03:46:53 字数 203 浏览 0 评论 0原文

今天参加一个面试,面试官问了我这样的问题:

重入和互斥线程安全吗?你能解释一下为什么吗?

我对并发编程比较陌生,无法回答。但我说……

互斥是线程安全的。但可重入则不然,这就是我们使用可重入锁的原因。

面试官继续讨论下一个问题,尽管到了另一个领域……我想我把这个问题搞砸了……

当他问我这个问题时,他希望我说什么?

I attended an interview today in which the interviewer asked me the following question :

Is re-entrancy and mutual exclusion thread-safe ? Can you explain why ?

I am relatively new to concurrent programming and could not answer it.. But i said ...

Mutual exclusion is thread safe . But re-entrancy is not and that is the reason why we have re-entrant locks .

The interviewer moved on to the next question though to a different area ... I think i messed this one up ...

What is he expecting me to say when he asked me this ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

各自安好 2024-10-01 03:46:53

正确的答案应该是:

是的,它们是线程安全的实现。

可重入

以这样的方式编写代码:它可以由一个任务部分执行,由另一个任务重新输入,然后从原始任务恢复。这需要将状态信息保存在每个任务的本地变量中(通常在其堆栈上),而不是静态或全局变量中。

一个例子

相互排斥

对共享数据的访问是使用确保任何时候只有一个线程读取或写入共享数据的机制进行序列化的。如果一段代码访问多个共享数据,则需要非常小心 — 问题包括竞争条件、死锁、活锁、饥饿以及许多操作系统教科书中列举的各种其他弊病。

一个例子

Proper answer should be:

Yes they are implementation of Thread safety.

re-entrancy

Writing code in such a way that it can be partially executed by one task, reentered by another task, and then resumed from the original task. This requires the saving of state information in variables local to each task, usually on its stack, instead of in static or global variables.

one example

Mutual exclusion

Access to shared data is serialized using mechanisms that ensure only one thread reads or writes the shared data at any time. Great care is required if a piece of code accesses multiple shared pieces of data—problems include race conditions, deadlocks, livelocks, starvation, and various other ills enumerated in many operating systems textbooks.

one example

陌生 2024-10-01 03:46:53

两者都是线程安全的 - 您也可以在维基百科上阅读它:
http://en.wikipedia.org/wiki/Reentrant_(子例程)< br>
http://en.wikipedia.org/wiki/Mutual_exclusion

可重入互斥体是可以从同一线程多次锁定的互斥体,前提是确保每个锁都有相应的解锁。

Both are thread safe - you can read it also on Wikipedia:
http://en.wikipedia.org/wiki/Reentrant_(subroutine)
http://en.wikipedia.org/wiki/Mutual_exclusion

Re-entrant mutexes are mutexes that can be locked multiple times from the same thread if it is ensured that there's a corresponding unlock for each lock.

夜清冷一曲。 2024-10-01 03:46:53

我引用http://en.wikipedia.org/wiki/Reentrant_(subroutine)

可重入和线程安全这两个概念都与函数处理资源的方式相关。然而,它们并不相同。

虽然可重入的概念会影响函数的外部接口,但线程安全仅涉及函数的实现,而不涉及其外部接口。

-- 在大多数情况下,要使不可重入函数可重入,必须修改其外部接口,以便所有数据都由函数的调用者提供。

-- 要使线程不安全的函数成为线程安全的,只需更改实现即可,通常通过添加同步块来保护共享资源免受不同线程的并发访问。

因此,可重入是比线程安全更基本的属性,并且根据定义,可重入导致线程安全:每个可重入函数都是线程安全的;然而,并非每个线程安全函数都是可重入的。

I quote http://en.wikipedia.org/wiki/Reentrant_(subroutine)

Both concepts of reentrancy and thread safety relate to the way functions handle resources. However, they are not the same.

While the concept of reentrancy can affect the external interface of a function, thread safety only concerns the implementation of the function and not its external interface.

-- In most cases, to make a non-reentrant function reentrant, its external interface must be modified such that all data is provided by the caller of the function.

-- To make a thread-unsafe function thread-safe, only the implementation needs to be changed, usually by adding synchronization blocks to protect shared resources from concurrent accesses by different threads.

Therefore, reentrancy is a more fundamental property than thread-safety and by definition, leads to thread-safety: Every reentrant function is thread-safe; however, not every thread-safe function is reentrant.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文