From 250a427814556d65de628351db66776d2ef0be42 Mon Sep 17 00:00:00 2001 From: niansa/tuxifan Date: Thu, 6 Apr 2023 09:11:36 +0200 Subject: [PATCH] Mention fit for use with devkitpro's NDS target --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e085941..08272ed 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Library includes following classes: * `SingleEvent` which models `co_await` enabled event that can be set, * `AwaitableTask` which models `co_await` enabled task. -Please note that these classes are not multithreading enabled. There is no synchronization or any kind of protection form race conditions. If you need to use coroutines with multithreading, just use [CppCoro](https://github.com/lewissbaker/cppcoro). This library is mostly thought for use with simple GUI programming. +Please note that these classes are not multithreading enabled. There is no synchronization or any kind of protection form race conditions. If you need to use coroutines with multithreading, just use [CppCoro](https://github.com/lewissbaker/cppcoro). This library is mostly thought for use with simple GUI programming. However, this makes it suitable for use on platforms like NDS (devkitpro) where atomics aren't implemented. ### Example ```c++