Gotcha: C++/WinRT weak_ref.get() doesn’t get the weak reference; it gets the strong reference
Источник: The Old New Thing
Источник: The Old New Thing
The Old New Thing
Gotcha: C++/WinRT weak_ref.get() doesn't get the weak reference; it gets the strong reference - The Old New Thing
If you have a winrt::com_ptr<T>, you can call the get() method to obtain the raw COM pointer inside it. This is handy if you need to pass that raw pointer along to another method that wants raw pointers. The winrt::weak_ref<T> also has a get() method,
[Перевод] Синхронные и асинхронные стектрейсы: опыт использования в Facebook
Источник: Habr
Автор: ph_piter
Источник: Habr
Автор: ph_piter
Хабр
Синхронные и асинхронные стектрейсы: опыт использования в Facebook
Здесь мы подробно поговорим о том, каковы технические отличия между реализацией асинхронных стектрейсов по сравнению с реализацией традиционных стектрейсов, а также с какими сложностями можно...
The case of the stack overflow exception when the stack is nowhere near overflowing
Источник: The Old New Thing
Источник: The Old New Thing
Microsoft News
The case of the stack overflow exception when the stack is nowhere near overflowing
There's a problem with the stack that prevents it from growing, so you could consider than an overflow.