UdonLibrary 1.0.0
機械システム研究部 C++ ライブラリ
読み取り中…
検索中…
一致する文字列を見つけられません
ScopedInterruptLocker.hpp
[詳解]
1#pragma once
2
3namespace Udon
4{
5
11 {
12 public:
14 {
15 noInterrupts();
16 }
17
19 {
20 interrupts();
21 }
22
25 };
26} // namespace Udon
割り込みロック、アンロックをスコープの範囲で制御するクラス
Definition ScopedInterruptLocker.hpp:11
ScopedInterruptLocker() noexcept
Definition ScopedInterruptLocker.hpp:13
ScopedInterruptLocker & operator=(const ScopedInterruptLocker &)=delete
~ScopedInterruptLocker() noexcept
Definition ScopedInterruptLocker.hpp:18
ScopedInterruptLocker(const ScopedInterruptLocker &)=delete
Definition Bit.hpp:12