⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 threadsup.h

📁 RTEMS (Real-Time Executive for Multiprocessor Systems) is a free open source real-time operating sys
💻 H
字号:
/* threadsup.h * *  $Id: threadsup.h,v 1.17 2000/10/31 16:33:48 joel Exp $ */#ifndef __RTEMS_POSIX_THREAD_SUPPORT_h#define __RTEMS_POSIX_THREAD_SUPPORT_h#include <sys/signal.h>#include <rtems/score/coresem.h>#include <rtems/score/tqdata.h>typedef struct {  pthread_attr_t          Attributes;  int                     detachstate;  Thread_queue_Control    Join_List;  int                     schedpolicy;  struct sched_param      schedparam;  int                     ss_high_priority;  Watchdog_Control        Sporadic_timer;  sigset_t                signals_blocked;  sigset_t                signals_pending;#if 0  /*   *  POSIX Interrupts    */  unsigned32              interrupts_installed;  CORE_semaphore_Control  Interrupt_Semaphore;#endif  /*   *  POSIX Cancelability    */  int                     cancelability_state;  int                     cancelability_type;  int                     cancelation_requested;  Chain_Control           Cancellation_Handlers;} POSIX_API_Control;#endif/* end of include file */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -