Browse Source

整理代码

tags/v2.9.7
tearshark 6 years ago
parent
commit
df2243e8eb
5 changed files with 15 additions and 13 deletions
  1. 1
    1
      librf/src/def.h
  2. 1
    1
      librf/src/scheduler.h
  3. 1
    1
      librf/src/state.h
  4. 7
    7
      librf/src/when.h
  5. 5
    3
      vs_proj/librf.vcxproj

+ 1
- 1
librf/src/def.h View File

@@ -1,6 +1,6 @@
#pragma once
#include <yvals.h>
//#include <yvals.h>
#include <atomic>
#include <memory>
#include <chrono>

+ 1
- 1
librf/src/scheduler.h View File

@@ -3,7 +3,7 @@
#include <array>
#include <vector>
#include <yvals.h>
//#include <yvals.h>
#include "rf_task.h"
#include "utils.h"

+ 1
- 1
librf/src/state.h View File

@@ -24,7 +24,7 @@ namespace resumef
#endif
protected:
coroutine_handle<> _coro;
std::atomic<intptr_t> _count = 0; // tracks reference count of state object
std::atomic<intptr_t> _count{0}; // tracks reference count of state object
std::exception_ptr _exception;
std::atomic<bool> _ready = false;

+ 7
- 7
librf/src/when.h View File

@@ -112,12 +112,12 @@ namespace resumef
};
template<class _Tup, size_t _Idx>
inline void when_all_one__(scheduler & s, const detail::when_impl_ptr & e, _Tup & t)
inline void when_all_one__(scheduler & s, const when_impl_ptr & e, _Tup & t)
{
}
template<class _Tup, size_t _Idx, class _Fty, class... _Rest>
inline void when_all_one__(scheduler & s, const detail::when_impl_ptr & e, _Tup & t, _Fty f, _Rest&&... rest)
inline void when_all_one__(scheduler & s, const when_impl_ptr & e, _Tup & t, _Fty f, _Rest&&... rest)
{
s + when_all_functor<_Fty, std::tuple_element_t<_Idx, _Tup> >{e, std::move(f), std::get<_Idx>(t)};
@@ -125,7 +125,7 @@ namespace resumef
}
template<class _Val, class _Iter, typename _Fty = decltype(*std::declval<_Iter>())>
inline void when_all_range__(scheduler & s, const detail::when_impl_ptr & e, std::vector<_Val> & t, _Iter begin, _Iter end)
inline void when_all_range__(scheduler & s, const when_impl_ptr & e, std::vector<_Val> & t, _Iter begin, _Iter end)
{
using future_type = std::remove_reference_t<_Fty>;
@@ -194,7 +194,7 @@ namespace resumef
mutable when_any_result_ptr _val;
intptr_t _Idx;
when_any_functor(const detail::when_impl_ptr & e, future_type f, const when_any_result_ptr & v, intptr_t idx)
when_any_functor(const when_impl_ptr & e, future_type f, const when_any_result_ptr & v, intptr_t idx)
: _e(e)
, _f(std::move(f))
, _val(v)
@@ -238,12 +238,12 @@ namespace resumef
};
template<intptr_t _Idx>
inline void when_any_one__(scheduler & s, const detail::when_impl_ptr & e, const when_any_result_ptr & t)
inline void when_any_one__(scheduler & s, const when_impl_ptr & e, const when_any_result_ptr & t)
{
}
template<intptr_t _Idx, class _Fty, class... _Rest>
inline void when_any_one__(scheduler & s, const detail::when_impl_ptr & e, const when_any_result_ptr & t, _Fty f, _Rest&&... rest)
inline void when_any_one__(scheduler & s, const when_impl_ptr & e, const when_any_result_ptr & t, _Fty f, _Rest&&... rest)
{
s + when_any_functor<_Fty>{e, std::move(f), t, _Idx};
@@ -274,7 +274,7 @@ namespace resumef
template<class _Iter, typename _Fty = decltype(*std::declval<_Iter>())>
inline void when_any_range__(scheduler & s, const detail::when_impl_ptr & e, const when_any_result_ptr & t, _Iter begin, _Iter end)
inline void when_any_range__(scheduler & s, const when_impl_ptr & e, const when_any_result_ptr & t, _Iter begin, _Iter end)
{
using future_type = std::remove_reference_t<_Fty>;

+ 5
- 3
vs_proj/librf.vcxproj View File

@@ -89,7 +89,7 @@
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>..\librf;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions>/await /std:c++latest </AdditionalOptions>
<AdditionalOptions>/await /permissive- </AdditionalOptions>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<LanguageStandard>stdcpplatest</LanguageStandard>
</ClCompile>
@@ -109,6 +109,8 @@
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<LanguageStandard>stdcpp17</LanguageStandard>
<MinimalRebuild />
<CLanguageStandard>c11</CLanguageStandard>
<CppLanguageStandard>c++1y</CppLanguageStandard>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
@@ -124,7 +126,7 @@
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<SDLCheck>true</SDLCheck>
<AdditionalIncludeDirectories>..\librf;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions>/await /std:c++latest </AdditionalOptions>
<AdditionalOptions>/await /permissive- </AdditionalOptions>
<MultiProcessorCompilation>true</MultiProcessorCompilation>
<LanguageStandard>stdcpplatest</LanguageStandard>
</ClCompile>
@@ -144,7 +146,7 @@
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<AdditionalIncludeDirectories>..\librf;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
<AdditionalOptions>/await </AdditionalOptions>
<AdditionalOptions>/await /permissive- </AdditionalOptions>
<ExceptionHandling>Sync</ExceptionHandling>
<InlineFunctionExpansion>AnySuitable</InlineFunctionExpansion>
<FavorSizeOrSpeed>Speed</FavorSizeOrSpeed>

Loading…
Cancel
Save