亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? nucleus.h

?? nucleas source code
?? H
?? 第 1 頁(yè) / 共 4 頁(yè)
字號(hào):
#define         NU_EMPTY_DEBUG_ALLOCATION_LIST  -56



/* Define system errors.  */

#define         NU_ERROR_CREATING_TIMER_HISR    1
#define         NU_ERROR_CREATING_TIMER_TASK    2
#define         NU_STACK_OVERFLOW               3
#define         NU_UNHANDLED_INTERRUPT          4


/* Define I/O driver constants.  */

#define         NU_IO_ERROR                     -1
#define         NU_INITIALIZE                   1
#define         NU_ASSIGN                       2
#define         NU_RELEASE                      3
#define         NU_INPUT                        4
#define         NU_OUTPUT                       5
#define         NU_STATUS                       6
#define         NU_TERMINATE                    7


/* Define history entry IDs.  */

#define         NU_USER_ID                      1
#define         NU_CREATE_TASK_ID               2
#define         NU_DELETE_TASK_ID               3
#define         NU_RESET_TASK_ID                4
#define         NU_TERMINATE_TASK_ID            5
#define         NU_RESUME_TASK_ID               6
#define         NU_SUSPEND_TASK_ID              7
#define         NU_RELINQUISH_ID                8
#define         NU_SLEEP_ID                     9
#define         NU_CHANGE_PRIORITY_ID           10
#define         NU_CHANGE_PREEMPTION_ID         11
#define         NU_CREATE_MAILBOX_ID            12
#define         NU_DELETE_MAILBOX_ID            13
#define         NU_RESET_MAILBOX_ID             14
#define         NU_SEND_TO_MAILBOX_ID           15
#define         NU_BROADCAST_TO_MAILBOX_ID      16
#define         NU_RECEIVE_FROM_MAILBOX_ID      17
#define         NU_CREATE_QUEUE_ID              18
#define         NU_DELETE_QUEUE_ID              19
#define         NU_RESET_QUEUE_ID               20
#define         NU_SEND_TO_FRONT_OF_QUEUE_ID    21
#define         NU_SEND_TO_QUEUE_ID             22
#define         NU_BROADCAST_TO_QUEUE_ID        23
#define         NU_RECEIVE_FROM_QUEUE_ID        24
#define         NU_CREATE_PIPE_ID               25 
#define         NU_DELETE_PIPE_ID               26 
#define         NU_RESET_PIPE_ID                27
#define         NU_SEND_TO_FRONT_OF_PIPE_ID     28 
#define         NU_SEND_TO_PIPE_ID              29 
#define         NU_BROADCAST_TO_PIPE_ID         30 
#define         NU_RECEIVE_FROM_PIPE_ID         31 
#define         NU_CREATE_SEMAPHORE_ID          32
#define         NU_DELETE_SEMAPHORE_ID          33
#define         NU_RESET_SEMAPHORE_ID           34
#define         NU_OBTAIN_SEMAPHORE_ID          35
#define         NU_RELEASE_SEMAPHORE_ID         36
#define         NU_CREATE_EVENT_GROUP_ID        37
#define         NU_DELETE_EVENT_GROUP_ID        38
#define         NU_SET_EVENTS_ID                39
#define         NU_RETRIEVE_EVENTS_ID           40
#define         NU_CREATE_PARTITION_POOL_ID     41
#define         NU_DELETE_PARTITION_POOL_ID     42
#define         NU_ALLOCATE_PARTITION_ID        43
#define         NU_DEALLOCATE_PARTITION_ID      44
#define         NU_CREATE_MEMORY_POOL_ID        45
#define         NU_DELETE_MEMORY_POOL_ID        46
#define         NU_ALLOCATE_MEMORY_ID           47
#define         NU_DEALLOCATE_MEMORY_ID         48
#define         NU_CONTROL_SIGNALS_ID           49
#define         NU_RECEIVE_SIGNALS_ID           50
#define         NU_REGISTER_SIGNAL_HANDLER_ID   51
#define         NU_SEND_SIGNALS_ID              52
#define         NU_REGISTER_LISR_ID             53
#define         NU_CREATE_HISR_ID               54
#define         NU_DELETE_HISR_ID               55
#define         NU_CREATE_TIMER_ID              56
#define         NU_DELETE_TIMER_ID              57
#define         NU_CONTROL_TIMER_ID             58
#define         NU_RESET_TIMER_ID               59
#define         NU_CREATE_DRIVER_ID             60
#define         NU_DELETE_DRIVER_ID             61
#define         NU_REQUEST_DRIVER_ID            62
#define         NU_RESUME_DRIVER_ID             63
#define         NU_SUSPEND_DRIVER_ID            64
#define         NU_CHANGE_TIME_SLICE_ID         65
#define         NU_ASSERT_ID                    66
#define         NU_ALLOCATE_ALIGNED_ID          67


/* Define the basic data structure templates.  If the NU_DEBUG conditional
   compilation is specified, the actual structure definition is used.  */

#ifdef          NU_DEBUG
#include        "cs_defs.h"
#include        "tm_defs.h"
#include        "tc_defs.h"
#include        "mb_defs.h"
#include        "qu_defs.h"
#include        "pi_defs.h"
#include        "sm_defs.h"
#include        "ev_defs.h"
#include        "pm_defs.h"
#include        "dm_defs.h"
#endif


#ifndef         NU_DEBUG

/* Define task control data structure with all internal information 
   hidden.  */
typedef struct NU_TASK_STRUCT
{
    UNSIGNED      words[NU_TASK_SIZE];
} NU_TASK;
#else

/* Define task control data structure with the actual internal data 
   structure.  */
typedef TC_TCB      NU_TASK;
#endif


#ifndef         NU_DEBUG

/* Define HISR control data structure with all internal information 
   hidden.  */
typedef struct NU_HISR_STRUCT
{
    UNSIGNED      words[NU_HISR_SIZE];
} NU_HISR;
#else

/* Define HISR control data structure with the actual internal data 
   structure.  */
typedef TC_HCB      NU_HISR;
#endif


#ifndef         NU_DEBUG

/* Define mailbox control data structure with all internal information
   hidden.  */ 
typedef struct NU_MAILBOX_STRUCT
{
    UNSIGNED      words[NU_MAILBOX_SIZE];
} NU_MAILBOX;
#else

/* Define mailbox control data structure with the actual internal data 
   structure.  */
typedef MB_MCB      NU_MAILBOX;
#endif

 
#ifndef         NU_DEBUG

/* Define queue control data structure with all internal information
   hidden.  */ 
typedef struct NU_QUEUE_STRUCT
{
    UNSIGNED      words[NU_QUEUE_SIZE];
} NU_QUEUE;
#else

/* Define queue control data structure with the actual internal data 
   structure.  */
typedef QU_QCB      NU_QUEUE;
#endif


#ifndef         NU_DEBUG

/* Define pipe control data structure with all internal information
   hidden.  */ 
typedef struct NU_PIPE_STRUCT
{
    UNSIGNED      words[NU_PIPE_SIZE];
} NU_PIPE;
#else

/* Define pipe control data structure with the actual internal data 
   structure.  */
typedef PI_PCB      NU_PIPE;
#endif


#ifndef         NU_DEBUG

/* Define semaphore control data structure with all internal information
   hidden.  */ 
typedef struct NU_SEMAPHORE_STRUCT
{
    UNSIGNED       words[NU_SEMAPHORE_SIZE];
} NU_SEMAPHORE;
#else

/* Define semaphore control data structure with the actual internal data 
   structure.  */
typedef SM_SCB      NU_SEMAPHORE;
#endif


#ifndef         NU_DEBUG

/* Define event group control data structure with all internal information
   hidden.  */ 
typedef struct NU_EVENT_GROUP_STRUCT
{
    UNSIGNED       words[NU_EVENT_GROUP_SIZE];
} NU_EVENT_GROUP;
#else

/* Define event group control data structure with the actual internal data 
   structure.  */
typedef EV_GCB      NU_EVENT_GROUP;
#endif


#ifndef         NU_DEBUG

/* Define partition pool control data structure with all internal 
   information hidden.  */ 
typedef struct NU_PARTITION_POOL_STRUCT
{
    UNSIGNED       words[NU_PARTITION_POOL_SIZE];
} NU_PARTITION_POOL;
#else

/* Define partition pool control data structure with the actual internal 
   data structure.  */
typedef PM_PCB      NU_PARTITION_POOL;
#endif


#ifndef         NU_DEBUG

/* Define memory pool control data structure with all internal information
   hidden.  */ 
typedef struct NU_MEMORY_POOL_STRUCT
{
    UNSIGNED       words[NU_MEMORY_POOL_SIZE];
} NU_MEMORY_POOL;
#else

/* Define memory pool control data structure with the actual internal data 
   structure.  */
typedef DM_PCB      NU_MEMORY_POOL;
#endif


#ifndef         NU_DEBUG

/* Define timer control data structure with all internal information
   hidden.  */ 
typedef struct NU_TIMER_STRUCT
{
    UNSIGNED       words[NU_TIMER_SIZE];
} NU_TIMER;
#else

/* Define timer control data structure with the actual internal data 
   structure.  */
typedef TM_APP_TCB      NU_TIMER;
#endif


#ifndef         NU_DEBUG

/* Define protect control data structure with all internal information
   hidden.  */ 
typedef struct NU_PROTECT_STRUCT
{
    UNSIGNED       words[NU_PROTECT_SIZE];
} NU_PROTECT;
#else

/* Define protect control data structure with the actual internal data 
   structure.  */
typedef TC_PROTECT      NU_PROTECT;
#endif



/* Define I/O driver request structures.  */

struct NU_INITIALIZE_STRUCT
{
    VOID       *nu_io_address;              /* Base IO address          */
    UNSIGNED    nu_logical_units;           /* Number of logical units  */
    VOID       *nu_memory;                  /* Generic memory pointer   */
    INT         nu_vector;                  /* Interrupt vector number  */
};

struct NU_ASSIGN_STRUCT
{
    UNSIGNED    nu_logical_unit;            /* Logical unit number      */
    INT         nu_assign_info;             /* Additional assign info   */
};

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产在线一区二区| 日韩区在线观看| 99re热视频这里只精品| 粉嫩久久99精品久久久久久夜| 精品一区二区免费在线观看| 久草这里只有精品视频| 韩国v欧美v日本v亚洲v| 国产一区91精品张津瑜| 国产精品一色哟哟哟| 成人精品视频网站| 色综合久久综合网| 欧美视频在线一区二区三区| 欧美日韩精品一区二区在线播放| 精品视频一区二区不卡| 欧美精品视频www在线观看| 欧美一三区三区四区免费在线看 | 91麻豆免费在线观看| av一区二区三区在线| 欧美亚洲动漫精品| 337p亚洲精品色噜噜噜| 精品久久久久久久久久久久久久久 | 日本一区二区三区四区在线视频| 久久久亚洲精品石原莉奈| 国产欧美日韩一区二区三区在线观看| 国产精品午夜在线观看| 国产精品美女久久久久久久久| 综合分类小说区另类春色亚洲小说欧美| 亚洲欧美成人一区二区三区| 亚洲国产日韩精品| 精品综合久久久久久8888| 国产精选一区二区三区| 91视频观看免费| 欧美电影一区二区| 国产三级一区二区| 亚洲精品成人悠悠色影视| 石原莉奈一区二区三区在线观看 | 欧美日韩免费不卡视频一区二区三区| 欧美裸体一区二区三区| 亚洲精品在线三区| 中文字幕日韩欧美一区二区三区| 亚洲一区二区五区| 激情综合五月天| 99精品1区2区| 日韩一区二区高清| 国产精品毛片久久久久久 | 欧洲色大大久久| 久久色在线观看| 一区二区三区蜜桃网| 精品在线观看免费| 91丨porny丨国产| 欧美大黄免费观看| 亚洲欧美激情在线| 国产综合色视频| 欧日韩精品视频| 日本一区二区三级电影在线观看 | av成人免费在线观看| 欧美一区二区在线免费观看| 中文字幕在线不卡| 久久精品国产第一区二区三区| 91理论电影在线观看| 日韩精品一区二区三区视频在线观看 | 色欧美乱欧美15图片| 精品久久久久久最新网址| 亚洲裸体xxx| 国产乱码精品1区2区3区| 欧美性xxxxxxxx| 国产精品久久免费看| 美女性感视频久久| 欧美怡红院视频| 中文成人av在线| 久久99精品国产91久久来源| 欧美中文字幕一二三区视频| 中文字幕不卡在线| 国内精品久久久久影院色| 欧美日韩一本到| 亚洲欧美电影院| www.亚洲精品| 国产清纯白嫩初高生在线观看91| 日韩1区2区日韩1区2区| 在线中文字幕不卡| 国产精品久久二区二区| 国产剧情在线观看一区二区| 欧美一区二区三区视频在线| 亚洲影视资源网| 色综合天天视频在线观看| 国产欧美精品区一区二区三区| 蜜桃视频第一区免费观看| 欧美日韩国产欧美日美国产精品| 亚洲免费大片在线观看| www.一区二区| 亚洲色图19p| 99免费精品视频| 国产精品拍天天在线| 成人黄色在线看| 欧美激情一区三区| 成人99免费视频| 中文字幕免费不卡| 成人免费视频免费观看| 国产色一区二区| 国产成人h网站| 国产日韩欧美精品一区| 国产不卡高清在线观看视频| 国产亚洲一区二区三区四区| 国产精品一二三区| 国产欧美日韩一区二区三区在线观看| 国产精品一区二区久久不卡| 久久一日本道色综合| 国产91在线看| 日韩一区中文字幕| 在线观看av不卡| 日韩精品乱码免费| 日韩精品一区国产麻豆| 国产精品一区二区x88av| 久久精品日产第一区二区三区高清版 | 国产欧美一区二区三区沐欲| 国产成人av资源| 国产精品成人在线观看| 一本色道久久综合精品竹菊| 亚洲手机成人高清视频| 在线观看一区二区精品视频| 五月婷婷综合激情| 日韩欧美黄色影院| 国产精品一区二区视频| 欧美高清在线一区| 欧洲av在线精品| 麻豆一区二区三| 国产欧美日韩另类一区| av亚洲精华国产精华精华| 亚洲午夜三级在线| 精品国产乱码久久久久久影片| 国产精品白丝av| 一区二区三区中文在线| 欧美一区二区观看视频| 国产黄色精品网站| 亚洲乱码国产乱码精品精98午夜| 欧美日韩精品是欧美日韩精品| 免费欧美日韩国产三级电影| 中文字幕高清一区| 欧美性欧美巨大黑白大战| 日韩成人av影视| 国产精品久久久久久久久搜平片 | 欧美色网一区二区| 久久精品国产99久久6| 欧美国产禁国产网站cc| 欧美日韩国产一二三| 国产一区二区按摩在线观看| 一区二区三区在线视频免费| 欧美成人一区二区三区在线观看| 国产白丝网站精品污在线入口| 亚洲美女屁股眼交3| 日韩欧美一区在线| 97精品电影院| 理论电影国产精品| 一区二区三区在线视频观看58| 日韩欧美电影在线| 色综合久久88色综合天天 | 欧美日韩一本到| 国产成人在线观看| 天天操天天干天天综合网| 国产天堂亚洲国产碰碰| 欧美一区二区在线视频| 91日韩一区二区三区| 精品在线一区二区三区| 午夜久久福利影院| 中文字幕av不卡| 日韩视频一区二区三区在线播放 | 国产丝袜在线精品| 在线成人小视频| 欧美精品一区男女天堂| 色婷婷狠狠综合| 国产成人av电影在线观看| 秋霞国产午夜精品免费视频| 亚洲精品乱码久久久久久久久 | 日韩美女久久久| 久久婷婷综合激情| 91精品国产欧美一区二区18| 91丝袜美女网| 成人久久久精品乱码一区二区三区| 免费观看日韩av| 亚洲二区在线视频| 亚洲麻豆国产自偷在线| 亚洲国产精品成人综合 | 亚洲国产精品一区二区久久 | 丁香激情综合五月| 久久福利视频一区二区| 丝袜美腿亚洲色图| 亚洲综合一区在线| 亚洲色图另类专区| 国产精品久久久久aaaa| 久久久亚洲欧洲日产国码αv| 日韩三级免费观看| 欧美一区二区三区视频免费播放| 欧美在线制服丝袜| 色哟哟欧美精品| 91老司机福利 在线| 97久久超碰精品国产| av影院午夜一区| www.在线成人| 91色综合久久久久婷婷| 91色婷婷久久久久合中文|