mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-07 09:48:04 +01:00
86a4f0045e
* fix(Thread_POSIX): sleep() poor performance #3703 * chore(vscode): add file associations * fix(TaskManager): waits for all threads in the ThreadPool #3704 * fix(Thread): call std::this_thread::sleep_for() to sleep #3703 * fix(PollSet): wakeup fd is never read #3708 * feat(Thread): Add Thread::set/getAffinity() #3709 * doc(Thread): Thread::trySleep() assertion #3710 * fix(PollSet): wakeup fd is never read (windows portion and some other optimizations) #3708 * feat(SocketReactor): improvements #3713 * chore(ThreadTest): add missing include * fix(PollSet): wakeup fd is never read #3708 * fix(Any): #3682 #3683 #3692 #3712 * fix(mingw): lowercase winsock2 and iphlpapi to allow cross compile #3711 * feat(Thread): Add Thread::set/getAffinity() #3709 * chore(SocketReactor): one-liners inlined, removed redundant try/catch in dospatch, remove unused onBusy() * feat(SocketReactor): add socket to ErrorNotification * fix(SocketReactor): pollTimeout assignment and ConnectorTest leak
107 lines
2.1 KiB
JSON
107 lines
2.1 KiB
JSON
{
|
|
"editor.insertSpaces": false,
|
|
"editor.tabSize": 4,
|
|
"files.associations": {
|
|
"*.bndlspec": "xml",
|
|
"__bit_reference": "cpp",
|
|
"__config": "cpp",
|
|
"__debug": "cpp",
|
|
"__errc": "cpp",
|
|
"__functional_base": "cpp",
|
|
"__hash_table": "cpp",
|
|
"__locale": "cpp",
|
|
"__mutex_base": "cpp",
|
|
"__node_handle": "cpp",
|
|
"__nullptr": "cpp",
|
|
"__split_buffer": "cpp",
|
|
"__string": "cpp",
|
|
"__threading_support": "cpp",
|
|
"__tree": "cpp",
|
|
"__tuple": "cpp",
|
|
"algorithm": "cpp",
|
|
"array": "cpp",
|
|
"atomic": "cpp",
|
|
"bit": "cpp",
|
|
"bitset": "cpp",
|
|
"cctype": "cpp",
|
|
"chrono": "cpp",
|
|
"cinttypes": "cpp",
|
|
"clocale": "cpp",
|
|
"cmath": "cpp",
|
|
"complex": "cpp",
|
|
"csignal": "cpp",
|
|
"cstdarg": "cpp",
|
|
"cstddef": "cpp",
|
|
"cstdint": "cpp",
|
|
"cstdio": "cpp",
|
|
"cstdlib": "cpp",
|
|
"cstring": "cpp",
|
|
"ctime": "cpp",
|
|
"cwchar": "cpp",
|
|
"cwctype": "cpp",
|
|
"deque": "cpp",
|
|
"exception": "cpp",
|
|
"forward_list": "cpp",
|
|
"fstream": "cpp",
|
|
"functional": "cpp",
|
|
"initializer_list": "cpp",
|
|
"iomanip": "cpp",
|
|
"ios": "cpp",
|
|
"iosfwd": "cpp",
|
|
"iostream": "cpp",
|
|
"istream": "cpp",
|
|
"iterator": "cpp",
|
|
"limits": "cpp",
|
|
"list": "cpp",
|
|
"locale": "cpp",
|
|
"map": "cpp",
|
|
"memory": "cpp",
|
|
"mutex": "cpp",
|
|
"new": "cpp",
|
|
"numeric": "cpp",
|
|
"optional": "cpp",
|
|
"ostream": "cpp",
|
|
"queue": "cpp",
|
|
"ratio": "cpp",
|
|
"regex": "cpp",
|
|
"set": "cpp",
|
|
"sstream": "cpp",
|
|
"stack": "cpp",
|
|
"stdexcept": "cpp",
|
|
"streambuf": "cpp",
|
|
"string": "cpp",
|
|
"string_view": "cpp",
|
|
"system_error": "cpp",
|
|
"thread": "cpp",
|
|
"tuple": "cpp",
|
|
"type_traits": "cpp",
|
|
"typeindex": "cpp",
|
|
"typeinfo": "cpp",
|
|
"unordered_map": "cpp",
|
|
"unordered_set": "cpp",
|
|
"utility": "cpp",
|
|
"vector": "cpp",
|
|
"*.tcc": "cpp",
|
|
"compare": "cpp",
|
|
"concepts": "cpp",
|
|
"memory_resource": "cpp",
|
|
"random": "cpp",
|
|
"ranges": "cpp",
|
|
"cfenv": "cpp",
|
|
"__bits": "cpp",
|
|
"variant": "cpp",
|
|
"condition_variable": "cpp",
|
|
"valarray": "cpp",
|
|
"strstream": "cpp",
|
|
"future": "cpp",
|
|
"shared_mutex": "cpp"
|
|
},
|
|
"files.exclude": {
|
|
"**/.dep": true,
|
|
"**/bin": true,
|
|
"**/obj": true
|
|
},
|
|
"git.ignoreLimitWarning": true,
|
|
"cmake.configureOnOpen": false
|
|
}
|