update
This commit is contained in:
parent
93f55802fa
commit
5318869025
39
README.md
39
README.md
@ -137,9 +137,22 @@
|
||||
- [myhashtable](./stl_src/myhashtable.md)
|
||||
- [unordered_map](./stl_src/unordered_map.md)
|
||||
|
||||
### 3.学习课程
|
||||
## 3.多线程与多进程
|
||||
|
||||
#### 3.1 [极客时间《现代C++实战30讲》](https://time.geekbang.org/channel/home)
|
||||
### 3.1 Threading In C++
|
||||
|
||||
- [介绍](./Threading_In_CPlusPlus/1.thread)
|
||||
- [创建线程的五种类型](./Threading_In_CPlusPlus/2.create_type)
|
||||
- [Join与Detachs](./Threading_In_CPlusPlus/3.join_detach)
|
||||
- [mutex in C++ Threading](./Threading_In_CPlusPlus/4.mutex)
|
||||
|
||||
> 学习自:
|
||||
>
|
||||
> https://www.youtube.com/watch?v=eZ8yKZo-PGw&list=PLk6CEY9XxSIAeK-EAh3hB4fgNvYkYmghp&index=4
|
||||
|
||||
### 4.学习课程
|
||||
|
||||
#### 4.1 [极客时间《现代C++实战30讲》](https://time.geekbang.org/channel/home)
|
||||
|
||||
- [堆、栈、RAII:C++里该如何管理资源?](./modern_C++_30/RAII)
|
||||
- [堆](./modern_++_30/RAII/heap.cpp)
|
||||
@ -166,9 +179,9 @@
|
||||
- [constexpr:一个常态的世界](./modern_C++_30/constexpr)
|
||||
- [函数对象和lambda:进入函数式编程](./modern_C++_30/functionLambda)
|
||||
|
||||
### 4.拓展部分
|
||||
### 5.拓展部分
|
||||
|
||||
#### 4.1 [C++惯用法](./codingStyleIdioms)
|
||||
#### 5.1 [C++惯用法](./codingStyleIdioms)
|
||||
|
||||
##### 你最喜欢的c++编程风格惯用法是什么?
|
||||
|
||||
@ -178,11 +191,11 @@
|
||||
- [4.copy and swap](./codingStyleIdioms/4_copy-swap)
|
||||
- [5.pImpl(指针指向具体实现)](./codingStyleIdioms/5_pImpl)
|
||||
|
||||
#### 4.2 一些问题
|
||||
#### 5.2 一些问题
|
||||
|
||||
- [C++中如何将string类型转换为int类型?](./basic_content/extent/string_int.md)
|
||||
|
||||
### 5.工具篇
|
||||
### 6.工具篇
|
||||
|
||||
- [容器快捷输出工具](./tool/output)
|
||||
|
||||
@ -205,22 +218,24 @@
|
||||
```
|
||||
|
||||
- 像Python一样简单输出
|
||||
- [像Python一样玩C/C++](./tool/像Python一样玩CC++.md)
|
||||
|
||||
|
||||
- [像Python一样玩C/C++](./tool/像Python一样玩CC++.md)
|
||||
|
||||
- 观察编译过程变化
|
||||
|
||||
- [https://cppinsights.io](https://cppinsights.io/)
|
||||
|
||||
### 6.代码运行
|
||||
### 7.代码运行
|
||||
|
||||
- **代码环境**
|
||||
|
||||
Ubuntu 18.04
|
||||
Ubuntu 18.04
|
||||
|
||||
- **工具**
|
||||
|
||||
CLion gcc/g++
|
||||
CLion gcc/g++
|
||||
|
||||
### 7.关于作者
|
||||
### 8.关于作者
|
||||
|
||||
个人公众号:
|
||||
|
||||
|
2
Threading_In_CPlusPlus/.idea/Threading_In_CPlusPlus.iml
Normal file
2
Threading_In_CPlusPlus/.idea/Threading_In_CPlusPlus.iml
Normal file
@ -0,0 +1,2 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module classpath="CMake" type="CPP_MODULE" version="4" />
|
7
Threading_In_CPlusPlus/.idea/misc.xml
Normal file
7
Threading_In_CPlusPlus/.idea/misc.xml
Normal file
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CMakeWorkspace" PROJECT_DIR="$PROJECT_DIR$" />
|
||||
<component name="JavaScriptSettings">
|
||||
<option name="languageLevel" value="ES6" />
|
||||
</component>
|
||||
</project>
|
8
Threading_In_CPlusPlus/.idea/modules.xml
Normal file
8
Threading_In_CPlusPlus/.idea/modules.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/Threading_In_CPlusPlus.iml" filepath="$PROJECT_DIR$/.idea/Threading_In_CPlusPlus.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
510
Threading_In_CPlusPlus/.idea/workspace.xml
Normal file
510
Threading_In_CPlusPlus/.idea/workspace.xml
Normal file
@ -0,0 +1,510 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CMakeRunConfigurationManager" shouldGenerate="true" shouldDeleteObsolete="true">
|
||||
<generated>
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="intro" />
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="3.functor" />
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="critical_section" />
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="1.thread" />
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="2.lambda_function" />
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="1.function_pointer" />
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="join" />
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="4.static_member_function" />
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="detach" />
|
||||
<config projectName="Threading_In_CPlusPlus" targetName="5.static_member_function" />
|
||||
</generated>
|
||||
</component>
|
||||
<component name="CMakeSettings">
|
||||
<configurations>
|
||||
<configuration PROFILE_NAME="Debug" CONFIG_NAME="Debug" />
|
||||
</configurations>
|
||||
</component>
|
||||
<component name="ChangeListManager">
|
||||
<list default="true" id="496e3cb0-6ee0-494d-9736-c022aecb1d47" name="Default Changelist" comment="" />
|
||||
<ignored path="$PROJECT_DIR$/cmake-build-debug/" />
|
||||
<option name="EXCLUDED_CONVERTED_TO_IGNORED" value="true" />
|
||||
<option name="SHOW_DIALOG" value="false" />
|
||||
<option name="HIGHLIGHT_CONFLICTS" value="true" />
|
||||
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
|
||||
<option name="LAST_RESOLUTION" value="IGNORE" />
|
||||
</component>
|
||||
<component name="ClangdSettings">
|
||||
<option name="formatViaClangd" value="false" />
|
||||
</component>
|
||||
<component name="ExecutionTargetManager" SELECTED_TARGET="CMakeBuildProfile:Debug" />
|
||||
<component name="FileEditorManager">
|
||||
<leaf SIDE_TABS_SIZE_LIMIT_KEY="300">
|
||||
<file pinned="false" current-in-tab="true">
|
||||
<entry file="file://$PROJECT_DIR$/3.join_detach/detach.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="285">
|
||||
<caret line="18" column="8" selection-start-line="18" selection-end-line="33" />
|
||||
<folding>
|
||||
<element signature="e#183#202#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$PROJECT_DIR$/1.thread/intro.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="229">
|
||||
<caret line="24" selection-start-line="24" selection-end-line="24" />
|
||||
<folding>
|
||||
<element signature="e#39#58#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$PROJECT_DIR$/1.thread/thread.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="364">
|
||||
<caret line="13" column="10" selection-start-line="13" selection-start-column="10" selection-end-line="13" selection-end-column="10" />
|
||||
<folding>
|
||||
<element signature="e#39#58#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$PROJECT_DIR$/4.mutex/critical_section.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="504">
|
||||
<caret line="18" column="19" lean-forward="true" selection-start-line="18" selection-start-column="19" selection-end-line="18" selection-end-column="19" />
|
||||
<folding>
|
||||
<element signature="e#37#56#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/1.function_pointer.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="168">
|
||||
<caret line="6" column="13" lean-forward="true" selection-start-line="6" selection-start-column="13" selection-end-line="6" selection-end-column="13" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$PROJECT_DIR$/3.join_detach/join.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="285">
|
||||
<caret line="19" column="10" selection-start-line="19" selection-start-column="10" selection-end-line="19" selection-end-column="10" />
|
||||
<folding>
|
||||
<element signature="e#155#174#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/2.lambda_function.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="565">
|
||||
<caret line="25" column="32" lean-forward="true" selection-start-line="25" selection-start-column="32" selection-end-line="25" selection-end-column="32" />
|
||||
<folding>
|
||||
<element signature="e#49#66#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/3.functor.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="336">
|
||||
<caret line="12" column="7" lean-forward="true" selection-start-line="12" selection-start-column="7" selection-end-line="12" selection-end-column="7" />
|
||||
<folding>
|
||||
<element signature="e#40#57#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/4.no_static_member_function.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="280">
|
||||
<caret line="10" column="14" selection-start-line="10" selection-start-column="14" selection-end-line="10" selection-end-column="14" />
|
||||
<folding>
|
||||
<element signature="e#40#57#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
<file pinned="false" current-in-tab="false">
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/5.static_member_function.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="280">
|
||||
<caret line="11" column="12" lean-forward="true" selection-start-line="11" selection-start-column="12" selection-end-line="11" selection-end-column="12" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</file>
|
||||
</leaf>
|
||||
</component>
|
||||
<component name="IdeDocumentHistory">
|
||||
<option name="CHANGED_PATHS">
|
||||
<list>
|
||||
<option value="$PROJECT_DIR$/CMakeLists.txt" />
|
||||
<option value="$PROJECT_DIR$/thread/intro.cpp" />
|
||||
<option value="$PROJECT_DIR$/create_type/3.functor.cpp" />
|
||||
<option value="$PROJECT_DIR$/create_type/4.static_member_function.cpp" />
|
||||
<option value="$PROJECT_DIR$/create_type/4.no_static_member_function.cpp" />
|
||||
<option value="$PROJECT_DIR$/create_type/5.static_member_function.cpp" />
|
||||
<option value="$PROJECT_DIR$/create_type/1.function_pointer.cpp" />
|
||||
<option value="$PROJECT_DIR$/create_type/2.lambda_function.cpp" />
|
||||
<option value="$PROJECT_DIR$/thread/thread.cpp" />
|
||||
<option value="$PROJECT_DIR$/3.join_detach/detach.cpp" />
|
||||
<option value="$PROJECT_DIR$/4.mutex/critical_section.cpp" />
|
||||
<option value="$PROJECT_DIR$/3.join_detach/join.cpp" />
|
||||
</list>
|
||||
</option>
|
||||
</component>
|
||||
<component name="ProjectFrameBounds" extendedState="6">
|
||||
<option name="x" value="145" />
|
||||
<option name="y" value="274" />
|
||||
<option name="width" value="1196" />
|
||||
<option name="height" value="754" />
|
||||
</component>
|
||||
<component name="ProjectView">
|
||||
<navigator proportions="" version="1">
|
||||
<foldersAlwaysOnTop value="true" />
|
||||
</navigator>
|
||||
<panes>
|
||||
<pane id="ProjectPane">
|
||||
<subPane>
|
||||
<expand>
|
||||
<path>
|
||||
<item name="Threading_In_CPlusPlus" type="b2602c69:ProjectViewProjectNode" />
|
||||
<item name="Threading_In_CPlusPlus" type="462c0819:PsiDirectoryNode" />
|
||||
</path>
|
||||
<path>
|
||||
<item name="Threading_In_CPlusPlus" type="b2602c69:ProjectViewProjectNode" />
|
||||
<item name="Threading_In_CPlusPlus" type="462c0819:PsiDirectoryNode" />
|
||||
<item name="1.thread" type="462c0819:PsiDirectoryNode" />
|
||||
</path>
|
||||
<path>
|
||||
<item name="Threading_In_CPlusPlus" type="b2602c69:ProjectViewProjectNode" />
|
||||
<item name="Threading_In_CPlusPlus" type="462c0819:PsiDirectoryNode" />
|
||||
<item name="2.create_type" type="462c0819:PsiDirectoryNode" />
|
||||
</path>
|
||||
<path>
|
||||
<item name="Threading_In_CPlusPlus" type="b2602c69:ProjectViewProjectNode" />
|
||||
<item name="Threading_In_CPlusPlus" type="462c0819:PsiDirectoryNode" />
|
||||
<item name="3.join_detach" type="462c0819:PsiDirectoryNode" />
|
||||
</path>
|
||||
<path>
|
||||
<item name="Threading_In_CPlusPlus" type="b2602c69:ProjectViewProjectNode" />
|
||||
<item name="Threading_In_CPlusPlus" type="462c0819:PsiDirectoryNode" />
|
||||
<item name="4.mutex" type="462c0819:PsiDirectoryNode" />
|
||||
</path>
|
||||
</expand>
|
||||
<select />
|
||||
</subPane>
|
||||
</pane>
|
||||
<pane id="Scope" />
|
||||
</panes>
|
||||
</component>
|
||||
<component name="PropertiesComponent">
|
||||
<property name="WebServerToolWindowFactoryState" value="false" />
|
||||
<property name="last_opened_file_path" value="$PROJECT_DIR$/3.join_detach" />
|
||||
<property name="nodejs_interpreter_path.stuck_in_default_project" value="undefined stuck path" />
|
||||
<property name="nodejs_npm_path_reset_for_default_project" value="true" />
|
||||
</component>
|
||||
<component name="RecentsManager">
|
||||
<key name="CopyFile.RECENT_KEYS">
|
||||
<recent name="$PROJECT_DIR$/3.join_detach" />
|
||||
<recent name="$PROJECT_DIR$/create_type" />
|
||||
<recent name="$PROJECT_DIR$/thread" />
|
||||
</key>
|
||||
</component>
|
||||
<component name="RunDashboard">
|
||||
<option name="ruleStates">
|
||||
<list>
|
||||
<RuleState>
|
||||
<option name="name" value="ConfigurationTypeDashboardGroupingRule" />
|
||||
</RuleState>
|
||||
<RuleState>
|
||||
<option name="name" value="StatusDashboardGroupingRule" />
|
||||
</RuleState>
|
||||
</list>
|
||||
</option>
|
||||
</component>
|
||||
<component name="RunManager" selected="CMake Application.critical_section">
|
||||
<configuration name="1.function_pointer" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="1.function_pointer" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="1.function_pointer">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<configuration name="1.thread" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="1.thread" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="1.thread">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<configuration name="2.lambda_function" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="2.lambda_function" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="2.lambda_function">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<configuration name="3.functor" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="3.functor" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="3.functor">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<configuration name="4.static_member_function" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="4.static_member_function" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="4.static_member_function">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<configuration name="5.static_member_function" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="5.static_member_function" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="5.static_member_function">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<configuration name="critical_section" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="critical_section" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="critical_section">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<configuration name="detach" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="detach" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="detach">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<configuration name="intro" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="intro" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="intro">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<configuration name="join" type="CMakeRunConfiguration" factoryName="Application" PASS_PARENT_ENVS_2="true" PROJECT_NAME="Threading_In_CPlusPlus" TARGET_NAME="join" CONFIG_NAME="Debug" RUN_TARGET_PROJECT_NAME="Threading_In_CPlusPlus" RUN_TARGET_NAME="join">
|
||||
<method v="2">
|
||||
<option name="com.jetbrains.cidr.execution.CidrBuildBeforeRunTaskProvider$BuildBeforeRunTask" enabled="true" />
|
||||
</method>
|
||||
</configuration>
|
||||
<list>
|
||||
<item itemvalue="CMake Application.1.function_pointer" />
|
||||
<item itemvalue="CMake Application.1.thread" />
|
||||
<item itemvalue="CMake Application.2.lambda_function" />
|
||||
<item itemvalue="CMake Application.3.functor" />
|
||||
<item itemvalue="CMake Application.4.static_member_function" />
|
||||
<item itemvalue="CMake Application.5.static_member_function" />
|
||||
<item itemvalue="CMake Application.critical_section" />
|
||||
<item itemvalue="CMake Application.detach" />
|
||||
<item itemvalue="CMake Application.intro" />
|
||||
<item itemvalue="CMake Application.join" />
|
||||
</list>
|
||||
</component>
|
||||
<component name="SvnConfiguration">
|
||||
<configuration />
|
||||
</component>
|
||||
<component name="TaskManager">
|
||||
<task active="true" id="Default" summary="Default task">
|
||||
<changelist id="496e3cb0-6ee0-494d-9736-c022aecb1d47" name="Default Changelist" comment="" />
|
||||
<created>1580451516661</created>
|
||||
<option name="number" value="Default" />
|
||||
<option name="presentableId" value="Default" />
|
||||
<updated>1580451516661</updated>
|
||||
<workItem from="1580451518064" duration="6654000" />
|
||||
<workItem from="1580469703743" duration="675000" />
|
||||
<workItem from="1580516401851" duration="3033000" />
|
||||
</task>
|
||||
<servers />
|
||||
</component>
|
||||
<component name="TimeTrackingManager">
|
||||
<option name="totallyTimeSpent" value="10362000" />
|
||||
</component>
|
||||
<component name="ToolWindowManager">
|
||||
<frame x="0" y="28" width="1920" height="1052" extended-state="6" />
|
||||
<editor active="true" />
|
||||
<layout>
|
||||
<window_info active="true" content_ui="combo" id="Project" order="0" visible="true" weight="0.17147435" />
|
||||
<window_info id="Structure" order="1" side_tool="true" weight="0.25" />
|
||||
<window_info id="Favorites" order="2" side_tool="true" />
|
||||
<window_info anchor="bottom" id="Message" order="0" />
|
||||
<window_info anchor="bottom" id="Find" order="1" weight="0.32854864" />
|
||||
<window_info anchor="bottom" id="Run" order="2" weight="0.29186603" />
|
||||
<window_info anchor="bottom" id="Debug" order="3" weight="0.4" />
|
||||
<window_info anchor="bottom" id="Cvs" order="4" weight="0.25" />
|
||||
<window_info anchor="bottom" id="Inspection" order="5" weight="0.4" />
|
||||
<window_info anchor="bottom" id="TODO" order="6" />
|
||||
<window_info anchor="bottom" id="Database Changes" order="7" />
|
||||
<window_info anchor="bottom" id="Statistic" order="8" />
|
||||
<window_info anchor="bottom" id="Messages" order="9" weight="0.32854864" />
|
||||
<window_info anchor="bottom" id="Terminal" order="10" />
|
||||
<window_info anchor="bottom" id="Event Log" order="11" side_tool="true" />
|
||||
<window_info anchor="bottom" id="Version Control" order="12" />
|
||||
<window_info anchor="bottom" id="CMake" order="13" weight="0.086124405" />
|
||||
<window_info anchor="right" id="Commander" internal_type="SLIDING" order="0" type="SLIDING" weight="0.4" />
|
||||
<window_info anchor="right" id="Ant Build" order="1" weight="0.25" />
|
||||
<window_info anchor="right" content_ui="combo" id="Hierarchy" order="2" weight="0.25" />
|
||||
<window_info anchor="right" id="Database" order="3" />
|
||||
</layout>
|
||||
</component>
|
||||
<component name="TypeScriptGeneratedFilesManager">
|
||||
<option name="version" value="1" />
|
||||
</component>
|
||||
<component name="editorHistoryManager">
|
||||
<entry file="file://$PROJECT_DIR$/main.cpp" />
|
||||
<entry file="file://$USER_HOME$/gcc8.3/include/c++/8.3.0/chrono">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="113">
|
||||
<caret line="822" column="60" selection-start-line="822" selection-start-column="60" selection-end-line="822" selection-end-column="60" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/gcc8.3/include/c++/8.3.0/thread">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="295">
|
||||
<caret line="117" column="6" selection-start-line="117" selection-start-column="6" selection-end-line="117" selection-end-column="6" />
|
||||
<folding>
|
||||
<element signature="e#2999#3088#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/CMakeLists.txt">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="112">
|
||||
<caret line="4" column="28" selection-start-line="4" selection-start-column="28" selection-end-line="4" selection-end-column="28" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/gcc8.3/include/c++/8.3.0/mutex">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="1650">
|
||||
<caret line="606" column="30" selection-start-line="606" selection-start-column="30" selection-end-line="606" selection-end-column="30" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file:///usr/include/x86_64-linux-gnu/bits/pthreadtypes-arch.h">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="336">
|
||||
<caret line="24" column="10" selection-start-line="24" selection-start-column="10" selection-end-line="24" selection-end-column="10" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file:///usr/include/x86_64-linux-gnu/bits/pthreadtypes.h">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="339">
|
||||
<caret line="69" column="17" selection-start-line="69" selection-start-column="17" selection-end-line="69" selection-end-column="17" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/gcc8.3/include/c++/8.3.0/x86_64-pc-linux-gnu/bits/gthr-default.h">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="299">
|
||||
<caret line="49" column="10" selection-start-line="49" selection-start-column="10" selection-end-line="49" selection-end-column="10" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$USER_HOME$/gcc8.3/include/c++/8.3.0/bits/std_mutex.h">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="310">
|
||||
<caret line="62" column="21" lean-forward="true" selection-start-line="62" selection-start-column="21" selection-end-line="62" selection-end-column="21" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/4.mutex/critical_section.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="504">
|
||||
<caret line="18" column="19" lean-forward="true" selection-start-line="18" selection-start-column="19" selection-end-line="18" selection-end-column="19" />
|
||||
<folding>
|
||||
<element signature="e#37#56#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/1.thread/intro.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="229">
|
||||
<caret line="24" selection-start-line="24" selection-end-line="24" />
|
||||
<folding>
|
||||
<element signature="e#39#58#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/1.function_pointer.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="168">
|
||||
<caret line="6" column="13" lean-forward="true" selection-start-line="6" selection-start-column="13" selection-end-line="6" selection-end-column="13" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/1.thread/thread.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="364">
|
||||
<caret line="13" column="10" selection-start-line="13" selection-start-column="10" selection-end-line="13" selection-end-column="10" />
|
||||
<folding>
|
||||
<element signature="e#39#58#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/5.static_member_function.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="280">
|
||||
<caret line="11" column="12" lean-forward="true" selection-start-line="11" selection-start-column="12" selection-end-line="11" selection-end-column="12" />
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/4.no_static_member_function.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="280">
|
||||
<caret line="10" column="14" selection-start-line="10" selection-start-column="14" selection-end-line="10" selection-end-column="14" />
|
||||
<folding>
|
||||
<element signature="e#40#57#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/3.functor.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="336">
|
||||
<caret line="12" column="7" lean-forward="true" selection-start-line="12" selection-start-column="7" selection-end-line="12" selection-end-column="7" />
|
||||
<folding>
|
||||
<element signature="e#40#57#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/2.create_type/2.lambda_function.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="565">
|
||||
<caret line="25" column="32" lean-forward="true" selection-start-line="25" selection-start-column="32" selection-end-line="25" selection-end-column="32" />
|
||||
<folding>
|
||||
<element signature="e#49#66#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/3.join_detach/join.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="285">
|
||||
<caret line="19" column="10" selection-start-line="19" selection-start-column="10" selection-end-line="19" selection-end-column="10" />
|
||||
<folding>
|
||||
<element signature="e#155#174#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
<entry file="file://$PROJECT_DIR$/3.join_detach/detach.cpp">
|
||||
<provider selected="true" editor-type-id="text-editor">
|
||||
<state relative-caret-position="285">
|
||||
<caret line="18" column="8" selection-start-line="18" selection-end-line="33" />
|
||||
<folding>
|
||||
<element signature="e#183#202#0" expanded="true" />
|
||||
</folding>
|
||||
</state>
|
||||
</provider>
|
||||
</entry>
|
||||
</component>
|
||||
</project>
|
41
Threading_In_CPlusPlus/1.thread/intro.cpp
Normal file
41
Threading_In_CPlusPlus/1.thread/intro.cpp
Normal file
@ -0,0 +1,41 @@
|
||||
//
|
||||
// Created by light on 20-1-31.
|
||||
//
|
||||
|
||||
#include <iostream>
|
||||
#include <chrono>
|
||||
|
||||
using namespace std::chrono;
|
||||
using namespace std;
|
||||
|
||||
using ull = unsigned long long;
|
||||
ull OddSum = 0;
|
||||
ull EvenSum = 0;
|
||||
|
||||
void findEven(ull start, ull end) {
|
||||
for (ull i = start; i <= end; ++i)
|
||||
if ((i & 1) == 0)
|
||||
EvenSum += i;
|
||||
}
|
||||
|
||||
void findOdd(ull start, ull end) {
|
||||
for (ull i = start; i <= end; ++i)
|
||||
if ((i & 1) == 1)
|
||||
OddSum += i;
|
||||
}
|
||||
|
||||
int main() {
|
||||
|
||||
ull start = 0, end = 1900000000;
|
||||
|
||||
auto startTime = high_resolution_clock::now();
|
||||
findOdd(start, end);
|
||||
findEven(start, end);
|
||||
auto stopTime = high_resolution_clock::now();
|
||||
auto duration = duration_cast<microseconds>(stopTime - startTime);
|
||||
|
||||
cout << "OddSum : " << OddSum << endl;
|
||||
cout << "EvenSum: " << EvenSum << endl;
|
||||
cout << "Sec: " << duration.count() / 1000000 << endl;
|
||||
return 0;
|
||||
}
|
56
Threading_In_CPlusPlus/1.thread/thread.cpp
Normal file
56
Threading_In_CPlusPlus/1.thread/thread.cpp
Normal file
@ -0,0 +1,56 @@
|
||||
//
|
||||
// Created by light on 20-1-31.
|
||||
//
|
||||
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
#include <chrono>
|
||||
|
||||
using namespace std::chrono;
|
||||
using namespace std;
|
||||
|
||||
|
||||
/**
|
||||
* 1.普通函数指针
|
||||
* 2.Lambda函数
|
||||
* 3.Functors
|
||||
* 4.非静态成员函数
|
||||
* 5.静态成员函数
|
||||
*/
|
||||
|
||||
using ull = unsigned long long;
|
||||
ull OddSum = 0;
|
||||
ull EvenSum = 0;
|
||||
|
||||
void findEven(ull start, ull end) {
|
||||
for (ull i = start; i <= end; ++i)
|
||||
if ((i & 1) == 0)
|
||||
EvenSum += i;
|
||||
}
|
||||
|
||||
void findOdd(ull start, ull end) {
|
||||
for (ull i = start; i <= end; ++i)
|
||||
if ((i & 1) == 1)
|
||||
OddSum += i;
|
||||
}
|
||||
|
||||
int main() {
|
||||
|
||||
ull start = 0, end = 1900000000;
|
||||
|
||||
|
||||
auto startTime = high_resolution_clock::now();
|
||||
std::thread t1(findEven,start,end);
|
||||
std::thread t2(findOdd,start,end);
|
||||
|
||||
t1.join();
|
||||
t2.join();
|
||||
|
||||
auto stopTime = high_resolution_clock::now();
|
||||
auto duration = duration_cast<microseconds>(stopTime - startTime);
|
||||
|
||||
cout << "OddSum : " << OddSum << endl;
|
||||
cout << "EvenSum: " << EvenSum << endl;
|
||||
cout << "Sec: " << duration.count() / 1000000 << endl;
|
||||
return 0;
|
||||
}
|
23
Threading_In_CPlusPlus/2.create_type/1.function_pointer.cpp
Normal file
23
Threading_In_CPlusPlus/2.create_type/1.function_pointer.cpp
Normal file
@ -0,0 +1,23 @@
|
||||
//
|
||||
// Created by light on 20-1-31.
|
||||
//
|
||||
|
||||
// 1.函数指针
|
||||
#include <thread>
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
void fun(int x) {
|
||||
while (x-- > 0) {
|
||||
cout << x << endl;
|
||||
}
|
||||
}
|
||||
// 注意:如果我们创建多线程 并不会保证哪一个先开始
|
||||
int main() {
|
||||
std::thread t1(fun, 10);
|
||||
// std::1.thread t2(fun, 10);
|
||||
t1.join();
|
||||
// t2.join();
|
||||
return 0;
|
||||
}
|
31
Threading_In_CPlusPlus/2.create_type/2.lambda_function.cpp
Normal file
31
Threading_In_CPlusPlus/2.create_type/2.lambda_function.cpp
Normal file
@ -0,0 +1,31 @@
|
||||
//
|
||||
// Created by light on 20-1-31.
|
||||
//
|
||||
|
||||
// 1.函数指针
|
||||
#include <thread>
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
// 注意:如果我们创建多线程 并不会保证哪一个先开始
|
||||
int main() {
|
||||
// 2.Lambda函数
|
||||
auto fun = [](int x) {
|
||||
while (x-- > 0) {
|
||||
cout << x << endl;
|
||||
}
|
||||
};
|
||||
// std::1.thread t1(fun, 10);
|
||||
// 也可以写成下面:
|
||||
std::thread t1_1([](int x) {
|
||||
while (x-- > 0) {
|
||||
cout << x << endl;
|
||||
}
|
||||
}, 11);
|
||||
// std::1.thread t2(fun, 10);
|
||||
// t1.join();
|
||||
t1_1.join();
|
||||
// t2.join();
|
||||
return 0;
|
||||
}
|
25
Threading_In_CPlusPlus/2.create_type/3.functor.cpp
Normal file
25
Threading_In_CPlusPlus/2.create_type/3.functor.cpp
Normal file
@ -0,0 +1,25 @@
|
||||
//
|
||||
// Created by light on 20-1-31.
|
||||
//
|
||||
|
||||
|
||||
#include <thread>
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
// 3.functor (Funciton Object)
|
||||
class Base {
|
||||
public:
|
||||
void operator()(int x) {
|
||||
while (x-- > 0) {
|
||||
cout << x << endl;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
int main() {
|
||||
thread t(Base(), 10);
|
||||
t.join();
|
||||
return 0;
|
||||
}
|
@ -0,0 +1,26 @@
|
||||
//
|
||||
// Created by light on 20-1-31.
|
||||
//
|
||||
|
||||
|
||||
#include <thread>
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
// 4.Non-static member function
|
||||
class Base {
|
||||
public:
|
||||
void fun(int x) {
|
||||
while (x-- > 0) {
|
||||
cout << x << endl;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
int main() {
|
||||
Base b;
|
||||
thread t(&Base::fun,&b, 10);
|
||||
t.join();
|
||||
return 0;
|
||||
}
|
@ -0,0 +1,25 @@
|
||||
//
|
||||
// Created by light on 20-1-31.
|
||||
//
|
||||
|
||||
|
||||
#include <thread>
|
||||
#include <iostream>
|
||||
|
||||
using namespace std;
|
||||
|
||||
// 4.Non-static member function
|
||||
class Base {
|
||||
public:
|
||||
static void fun(int x) {
|
||||
while (x-- > 0) {
|
||||
cout << x << endl;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
int main() {
|
||||
thread t(&Base::fun, 10);
|
||||
t.join();
|
||||
return 0;
|
||||
}
|
34
Threading_In_CPlusPlus/3.join_detach/detach.cpp
Normal file
34
Threading_In_CPlusPlus/3.join_detach/detach.cpp
Normal file
@ -0,0 +1,34 @@
|
||||
//
|
||||
// Created by light on 20-1-31.
|
||||
//
|
||||
|
||||
// join 注意点
|
||||
|
||||
/**
|
||||
* 这用于从父线程分离新创建的线程
|
||||
* 在分离线程之前,请务必检查它是否可以joinable,
|
||||
* 否则可能会导致两次分离,并且双重detach()将导致程序终止
|
||||
* 如果我们有分离的线程并且main函数正在返回,那么分离的线程执行将被挂起
|
||||
*/
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
#include <chrono>
|
||||
#include <mutex>
|
||||
using namespace std;
|
||||
|
||||
void run(int count) {
|
||||
while (count-- > 0) {
|
||||
cout << count << endl;
|
||||
}
|
||||
std::this_thread::sleep_for(chrono::seconds(3));
|
||||
}
|
||||
|
||||
int main() {
|
||||
thread t1(run, 10);
|
||||
cout << "main()" << endl;
|
||||
t1.detach();
|
||||
if(t1.joinable())
|
||||
t1.detach();
|
||||
cout << "main() after" << endl;
|
||||
return 0;
|
||||
}
|
35
Threading_In_CPlusPlus/3.join_detach/join.cpp
Normal file
35
Threading_In_CPlusPlus/3.join_detach/join.cpp
Normal file
@ -0,0 +1,35 @@
|
||||
//
|
||||
// Created by light on 20-1-31.
|
||||
//
|
||||
|
||||
// join 注意点
|
||||
|
||||
/**
|
||||
* 一旦线程开始,我们要想等待线程完成,需要在该对象上调用join()
|
||||
* 双重join将导致程序终止
|
||||
* 在join之前我们应该检查显示是否可以被join,通过使用joinable()
|
||||
*/
|
||||
#include <iostream>
|
||||
#include <thread>
|
||||
#include <chrono>
|
||||
|
||||
using namespace std;
|
||||
|
||||
|
||||
void run(int count) {
|
||||
while (count-- > 0) {
|
||||
cout << count << endl;
|
||||
}
|
||||
std::this_thread::sleep_for(chrono::seconds(3));
|
||||
}
|
||||
|
||||
int main() {
|
||||
thread t1(run, 10);
|
||||
cout << "main()" << endl;
|
||||
t1.join();
|
||||
if (t1.joinable()) {
|
||||
t1.join();
|
||||
}
|
||||
cout << "main() after" << endl;
|
||||
return 0;
|
||||
}
|
34
Threading_In_CPlusPlus/4.mutex/critical_section.cpp
Normal file
34
Threading_In_CPlusPlus/4.mutex/critical_section.cpp
Normal file
@ -0,0 +1,34 @@
|
||||
//
|
||||
// Created by light on 20-2-1.
|
||||
//
|
||||
#include <iostream>
|
||||
#include <mutex>
|
||||
#include <thread>
|
||||
|
||||
using namespace std;
|
||||
|
||||
int sum = 0; //shared
|
||||
|
||||
mutex m;
|
||||
|
||||
void *countgold() {
|
||||
int i; //local to each thread
|
||||
for (i = 0; i < 10000000; i++) {
|
||||
m.lock();
|
||||
sum += 1;
|
||||
m.unlock();
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
int main() {
|
||||
thread t1(countgold);
|
||||
thread t2(countgold);
|
||||
|
||||
//Wait for both threads to finish
|
||||
t1.join();
|
||||
t2.join();
|
||||
|
||||
cout << "sum = " << sum << endl;
|
||||
return 0;
|
||||
}
|
16
Threading_In_CPlusPlus/CMakeLists.txt
Normal file
16
Threading_In_CPlusPlus/CMakeLists.txt
Normal file
@ -0,0 +1,16 @@
|
||||
cmake_minimum_required(VERSION 3.14)
|
||||
project(Threading_In_CPlusPlus)
|
||||
|
||||
set(CMAKE_CXX_STANDARD 17)
|
||||
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pthread")
|
||||
|
||||
add_executable(intro 1.thread/intro.cpp)
|
||||
add_executable(1.thread 1.thread/thread.cpp)
|
||||
add_executable(1.function_pointer 2.create_type/1.function_pointer.cpp)
|
||||
add_executable(2.lambda_function 2.create_type/2.lambda_function.cpp)
|
||||
add_executable(3.functor 2.create_type/3.functor.cpp)
|
||||
add_executable(4.static_member_function 2.create_type/4.no_static_member_function.cpp)
|
||||
add_executable(5.static_member_function 2.create_type/5.static_member_function.cpp)
|
||||
add_executable(join 3.join_detach/join.cpp)
|
||||
add_executable(detach 3.join_detach/detach.cpp)
|
||||
add_executable(critical_section 4.mutex/critical_section.cpp)
|
Loading…
Reference in New Issue
Block a user