当前位置:  技术问答>linux和unix

多线程问题

    来源: 互联网  发布时间:2015-08-03

    本文导语:  一个线程被创建后,是否还能动态改变线程的属性,(如优先级、堆栈大小等),如果可以,请问如何修改,如果不可以,请说明理由。最好能给出示例代码,谢谢。 | In Linux, you can modify the...

一个线程被创建后,是否还能动态改变线程的属性,(如优先级、堆栈大小等),如果可以,请问如何修改,如果不可以,请说明理由。最好能给出示例代码,谢谢。

|
In Linux, you can modify the priority of thread(created), but you can not modify the stack size of thread(creating and created).

The case for modifying the priority of thread (created) is shown as below:

int set_thread_priority(phread_t pid, int prio)
{
int policy;
struct sched_param param;

pthread_getschedparam(pid, &policy, ¶m);
param.sched_priority = prio;
return pthread_setschedparam(pid, policy, ¶m);


|
pthread_atfork - register handlers to be called at fork(2) time 
pthread_attr_destroy [pthread_attr_init] - thread creation attributes 
pthread_attr_getdetachstate [pthread_attr_init] - thread creation attributes 
pthread_attr_getinheritsched [pthread_attr_init] - thread creation attributes 
pthread_attr_getschedparam [pthread_attr_init] - thread creation attributes 
pthread_attr_getschedpolicy [pthread_attr_init] - thread creation attributes 
pthread_attr_getscope [pthread_attr_init] - thread creation attributes 
pthread_attr_init - thread creation attributes 
pthread_attr_setdetachstate [pthread_attr_init] - thread creation attributes 
pthread_attr_setinheritsched [pthread_attr_init] - thread creation attributes 
pthread_attr_setschedparam [pthread_attr_init] - thread creation attributes 
pthread_attr_setschedpolicy [pthread_attr_init] - thread creation attributes 
pthread_attr_setscope [pthread_attr_init] - thread creation attributes 
pthread_cancel - thread cancellation 
pthread_cleanup_pop [pthread_cleanup_push] - install and remove cleanup handlers 
pthread_cleanup_pop_restore_np [pthread_cleanup_push] - install and remove cleanup handlers 
pthread_cleanup_push - install and remove cleanup handlers 
pthread_cleanup_push_defer_np [pthread_cleanup_push] - install and remove cleanup handlers 
pthread_condattr_destroy [pthread_condattr_init] - condition creation attributes 
pthread_condattr_init - condition creation attributes 
pthread_cond_broadcast [pthread_cond_init] - operations on conditions 
pthread_cond_destroy [pthread_cond_init] - operations on conditions 
pthread_cond_init - operations on conditions 
pthread_cond_signal [pthread_cond_init] - operations on conditions 
pthread_cond_timedwait [pthread_cond_init] - operations on conditions 
pthread_cond_wait [pthread_cond_init] - operations on conditions 
pthread_create - create a new thread 
pthread_detach - put a running thread in the detached state 
pthread_equal - compare two thread identifiers 
pthread_exit - terminate the calling thread 
pthread_getschedparam [pthread_setschedparam] - control thread scheduling parameters 
pthread_getspecific [pthread_key_create] - management of thread-specific data 
pthread_join - wait for termination of another thread 
pthread_key_create - management of thread-specific data 
pthread_key_delete [pthread_key_create] - management of thread-specific data 
pthread_kill_other_threads_np - terminate all threads in program except calling thread 
pthread_kill [pthread_sigmask] - handling of signals in threads 
pthread_mutexattr_destroy [pthread_mutexattr_init] - mutex creation attributes 
pthread_mutexattr_getkind_np [pthread_mutexattr_init] - mutex creation attributes 
pthread_mutexattr_init - mutex creation attributes 
pthread_mutexattr_setkind_np [pthread_mutexattr_init] - mutex creation attributes 
pthread_mutex_destroy [pthread_mutex_init] - operations on mutexes 
pthread_mutex_init - operations on mutexes 
pthread_mutex_lock [pthread_mutex_init] - operations on mutexes 
pthread_mutex_trylock [pthread_mutex_init] - operations on mutexes 
pthread_mutex_unlock [pthread_mutex_init] - operations on mutexes 
pthread_once - once-only initialization 
pthread_self - return identifier of current thread 
pthread_setcancelstate [pthread_cancel] - thread cancellation 
pthread_setcanceltype [pthread_cancel] - thread cancellation 
pthread_setschedparam - control thread scheduling parameters 
pthread_setspecific [pthread_key_create] - management of thread-specific data 
pthread_sigmask - handling of signals in threads 
pthread_testcancel [pthread_cancel] - thread cancellation 

    
 
 

您可能感兴趣的文章:

  • 关于线程的问题,什么样的线程不是active线程?
  • 内核栈~ 内核线程 ~用户线程 之间关系 问题
  • 线程运行问题 线程跑了一段时间 然后直接退出 急!急!急!急!
  • 在什么情况下,有必要把一个函数独立为一个线程执行?或者说用线程解决问题的一些典型例子?
  • POSIX线程的问题:什么函数可以让特定线程等待一会儿?
  • 同步synchronized问题是否只在多线程中考虑,单线程中是否考虑,Why?
  • 关于一个多线程的问题,线程结束之后如何释放他的地址。
  • 小问题:在线程中调用sleep()使其睡眠的时候,此线程是否释放所占的资源?
  • 请教高手,线程问题,怎样暂停或杀掉多线程?
  • linux c 多线程问题任务分配问题
  • 线程分离状态问题
  • linux线程编程问题
  • 线程队列的一个简单问题
  • 请问线程编成的问题
  • 关于线程休眠问题
  • java 多线程问题
  • 一个线程问题,很困惑,高手帮个忙
  • linux 下子线程不能执行的问题?
  • 信号与线程的问题
  • 关于开任意个线程的问题
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • Java中多线程相关类Thread介绍
  • 一个进程创建了两个线程,如何使得当任何一个线程(比如线程a)结束时,同时也结束线程b,也就是使两个线程一起死掉,怎么办呢?
  • c#多线程更新窗口(winform)GUI的数据
  • java 线程,对当前线程(非主线程)调用sleep,为什么主线程(窗口)也没反应了
  • Windows和Linux下C++类成员方法作为线程函数方法介绍
  • 如何实现一个线程组内多线程的非同不执行,即一个线程执行完毕后再执行下一个线程???
  • c++的boost库多线程(Thread)编程(线程操作,互斥体mutex,条件变量)详解
  • 请问:进程创建的线程是怎样运行的啊,线程的处理函数运行完了,线程就退出了吗?
  • Linux下GCC内置原子操作函数(多线程资源访问)介绍
  • 请问Linux核心支持多线程吗?开发库有线程库吗?线程好用吗?(稳定?)
  • 请问,在一个进程中创建多线程时如何能避免不同的线程获得同一个线程标识
  • 我的一个多线程服务里, 总是有一个线程莫名其妙的变成僵尸线程。
  • 能否通过线程id控制线程的状态?或是观察到线程的状态?
  • 如何在一个线程中启动另外一个线程,然后本线程就退出?
  • 我要设置一个线程的优先级, 这个属性结构并没有线程的id,它怎么知道是设置哪个线程呢?
  • 请问在java多线程中,是只有run(){}内的代码运行在一个新线程下呢?还是这个类中的代码都运行在一个新线程下?
  • 请问在java多线程中,是只有run(){}内的代码运行在一个新线程下呢?还是这个类中的代码都运行在一个新线程下? iis7站长之家
  • 子线程的数据如何返回给主线程?
  • 如果父线程死掉 那么子线程会不会死掉呢
  • 多线程为何比单线程慢许多?
  • 如何设计线程池的监视线程


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3