使用位锁替换mutex和semaphore实现,仅支持单核

This commit is contained in:
NeoZng
2023-07-19 13:58:42 +08:00
parent 3faa9f1f8f
commit e938075e11
3 changed files with 32 additions and 13 deletions

20
.vscode/c_cpp_properties.json vendored Normal file
View File

@@ -0,0 +1,20 @@
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"cStandard": "c17",
"cppStandard": "gnu++17",
"intelliSenseMode": "windows-gcc-arm",
"configurationProvider": "ms-vscode.makefile-tools"
}
],
"version": 4
}