GithubHelp home page GithubHelp logo

mythreadpool's Introduction

线程池要实现思路:

要包含的内容: 线程池(存放线程) 任务队列(存放任务) 执行的过程:主线程向任务队列中提交任务;线程池中的线程,从任务队列中取任务,然后执行。(互斥访问)

任务队列:

首先,我们要考虑到,提交的任务,它的返回值和参数可能是任意的;同时,队列的性质要求,队列中的元素必须是相同类型的 因此,基本的思路是,队列中存放void*类型的函数指针,指向的函数中调用封装好的函数

互斥访问:要保证在同一时刻只能有一个线程访问任务队列。互斥锁+队列 实现安全队列

mythreadpool's People

Contributors

hhhxihan avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.