示例#1
0
void initializeWebThread()
{
    static std::once_flag initializeKey;
    std::call_once(initializeKey, [] {
        initializeWebThreadPlatform();
    });
}
示例#2
0
static void initializeWebThreadOnce()
{
    initializeWebThreadPlatform();
}