Skip to Content
詳解 Rustアトミック操作とロック ―並行処理実装のための低レイヤプログラミング
book

詳解 Rustアトミック操作とロック ―並行処理実装のための低レイヤプログラミング

by Mara Bos, 中田 秀基
November 2023
Intermediate to advanced
236 pages
3h 24m
Japanese
O'Reilly Japan, Inc.
Content preview from 詳解 Rustアトミック操作とロック ―並行処理実装のための低レイヤプログラミング

9章ロックの実装

本章では、Mutex、条件変数、リーダ・ライタ・ロックを独自実装する。まず、それぞれの基本的なバージョンを実装し、それからより効率の良いものに拡張していく。

標準ライブラリのロック型は使わない(使ったらインチキになる)ので、ビジーループを用いずにスレッドを待機させるためには、「8章 OSプリミティブ」で紹介したツールを用いなければならない。しかし、説明したように、OSが提供するツールはプラットフォームによって大きく異なるので、どのプラットフォームでも動作するものを作るのは難しい。

幸い、ほとんどの近代的なOSはfutexに類似した機能をサポートしている。少なくともウェイク操作とウェイト操作はサポートする。「8章 OSプリミティブ」で説明したように、Linuxはfutexシステムコールを2003年からサポートしている。WindowsはWaitOnAddress関数ファミリーを2012年からサポートしている。FreeBSDは_umtx_opシステムコールを2016年からサポートしている。

最も大きな例外はmacOSだ。macOSのカーネルはこれらの操作をサポートしているのだが、それを、我々が使えるような、安定した誰でも使えるC関数として公開していないのだ。しかし、macOSは最新のlibc++を同梱している。libc++は、C++標準ライブラリの実装だ。このライブラリはC++20をサポートしているが、C++20では、最も基本的なアトミックなウェイト操作とウェイク操作が組み込み関数としてサポートされている(std::atomic<T>::wait()など)。これをRustから使用するのは、さまざまな理由でなかなか大変なのだが、可能ではある。これを使うことで、macOSでもfutexに類似した基本的なウェイトとウェイク機能が利用できるようになる。 ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

データ保護完全ガイド ―あらゆるデータの保全と回復を可能にする

データ保護完全ガイド ―あらゆるデータの保全と回復を可能にする

W. Curtis Preston, 佐野 泰之, 池田 祥孝
作って動かすALife ―実装を通した人工生命モデル理論入門

作って動かすALife ―実装を通した人工生命モデル理論入門

岡 瑞起, 池上 高志, ドミニク チェン, 青木 竜太, 丸山 典宏

Publisher Resources

ISBN: 9784814400515Publisher Website