Damon Barry
Damon Barry
@obsoleted Like @chipalost said, that work is in our backlog. We've added the enhancement label, and we'll keep this issue open until DM work in the gateway is completed.
Version 2 of IoT Edge, which is available for public preview as of last week, has first-class support for device management—both for the edge device itself as well as things...
Being a preview, you can expect more features and documentation to show up in the v2 offering over time. To address specific comments: > The service SDK is missing ways...
@Kevin0626 are you still interested in investigating this? If so we'll need more detailed repro steps, otherwise I'll close this out. In some of your comments you mention our build...
No we don't support this currently, but we'd love to have it!
This is probably something we should do. I'll mark this as "enhancement" and we'll have a look at it. Thanks!
On Windows, `ThreadAPI_Sleep(0)` yields the remainder of the thread quantum, which should cause the remote proxy module to behave as expected. But on platforms that use pthreads (e.g., Linux), `ThreadAPI_Sleep(0)`...
Note that use of `sched_yield` requires that your posix system defines `_POSIX_PRIORITY_SCHEDULING`; we'd need to handle the case where `sched_yield` isn't available on the platform. IMO it would be best...
I'm confused...your original post said that `ThreadAPI_Sleep(0)` was consuming all the CPU (100%), but in your latest post you said it was only consuming 10% of the CPU, and that...
Wow, ok. So `sched_yield()` isn't a good solution for this. Will need to think on this some more...