Ignore:
Timestamp:
Oct 10, 2020, 4:50:41 PM (4 years ago)
Author:
alain
Message:

Introduce the ksocket.h & ksocket.c files in kernel/kern.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kernel/kern/thread.h

    r657 r662  
    8787#define THREAD_BLOCKED_JOIN      0x0010  /*! USR : blocked in exit / wait join        */
    8888#define THREAD_BLOCKED_SEM       0x0020  /*! USR : wait semaphore                     */
    89 #define THREAD_BLOCKED_PAGE      0x0040  /*! ??? : wait page access                  */
    90 #define THREAD_BLOCKED_IDLE      0x0080  /*! RPC : RPC_FIFO non empty                 */
     89#define THREAD_BLOCKED_PAGE      0x0040  /*! ??? : wait page access                   */
     90#define THREAD_BLOCKED_IDLE      0x0080  /*! RPC : wait RPC_FIFO non empty            */
    9191#define THREAD_BLOCKED_USERSYNC  0x0100  /*! USR : wait cond / mutex / barrier        */
    92 #define THREAD_BLOCKED_RPC       0x0200  /*! ANY : RPC completion                     */
     92#define THREAD_BLOCKED_RPC       0x0200  /*! ANY : wait RPC completion                */
    9393#define THREAD_BLOCKED_ISR       0x0400  /*! DEV : wait hardware IRQ                  */
    9494#define THREAD_BLOCKED_WAIT      0x0800  /*! USR : wait child process termination     */
    9595#define THREAD_BLOCKED_LOCK      0x1000  /*! ANY : wait queuelock or rwlock           */
    96 #define THREAD_BLOCKED_CLIENT    0x2000  /*! DEV : client threads queue non empty     */
     96#define THREAD_BLOCKED_CLIENT    0x2000  /*! DEV : wait clients queue non empty       */
    9797
    9898/***************************************************************************************
     
    195195        uint32_t            busylocks;       /*! number of taken busylocks                */
    196196
    197 #if DEBUG_BUSYLOCK
     197#if DEBUG_BUSYLOCK_TYPE
    198198    xlist_entry_t       busylocks_root;  /*! root of xlist of taken busylocks         */
    199199#endif
Note: See TracChangeset for help on using the changeset viewer.