posix系统线程调度

2020-12-12 23:34

阅读:633

标签:failed   read   string   out   main   include   ram   handle   seconds   

#include 
#include 
#include 
#include 
#include 
#include 
 
std::mutex iomutex;
void f(int num)
{
    std::this_thread::sleep_for(std::chrono::seconds(1));
 
    sched_param sch;
    int policy; 
    pthread_getschedparam(pthread_self(), &policy, &sch);
    std::lock_guard<:mutex> lk(iomutex);
    std::cout 

posix系统线程调度

标签:failed   read   string   out   main   include   ram   handle   seconds   

原文地址:https://www.cnblogs.com/smallredness/p/11002071.html


评论


亲,登录后才可以留言!