123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887 |
- /*
- * File : ipc.c
- * This file is part of RT-Thread RTOS
- * COPYRIGHT (C) 2006 - 2009, RT-Thread Development Team
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rt-thread.org/license/LICENSE
- *
- * Change Logs:
- * Date Author Notes
- * 2006-03-14 Bernard the first version
- * 2006-04-25 Bernard implement semaphore
- * 2006-05-03 Bernard add RT_IPC_DEBUG
- * modify the type of IPC waiting time to rt_int32_t
- * 2006-05-10 Bernard fix the semaphore take bug and add IPC object
- * 2006-05-12 Bernard implement mailbox and message queue
- * 2006-05-20 Bernard implement mutex
- * 2006-05-23 Bernard implement fast event
- * 2006-05-24 Bernard implement event
- * 2006-06-03 Bernard fix the thread timer init bug
- * 2006-06-05 Bernard fix the mutex release bug
- * 2006-06-07 Bernard fix the message queue send bug
- * 2006-08-04 Bernard add hook support
- * 2009-05-21 Yi.qiu fix the sem release bug
- * 2009-07-18 Bernard fix the event clear bug
- * 2009-09-09 Bernard remove fast event and fix ipc release bug
- * 2009-10-10 Bernard change semaphore and mutex value to unsigned value
- * 2009-10-25 Bernard change the mb/mq receive timeout to 0 if the
- * re-calculated delta tick is a negative number.
- * 2009-12-16 Bernard fix the rt_ipc_object_suspend issue when IPC flag
- * is RT_IPC_FLAG_PRIO
- * 2010-01-20 mbbill remove rt_ipc_object_decrease function.
- * 2010-04-20 Bernard move memcpy outside interrupt disable in mq
- */
- #include <rtthread.h>
- #include <rthw.h>
- #include "kservice.h"
- /* #define RT_IPC_DEBUG */
- #ifdef RT_USING_HOOK
- extern void (*rt_object_trytake_hook)(struct rt_object* object);
- extern void (*rt_object_take_hook)(struct rt_object* object);
- extern void (*rt_object_put_hook)(struct rt_object* object);
- #endif
- /**
- * @addtogroup IPC
- */
- /*@{*/
- /**
- * This function will initialize an IPC object
- *
- * @param ipc the IPC object
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_inline rt_err_t rt_ipc_object_init(struct rt_ipc_object *ipc)
- {
- /* init ipc object */
- rt_list_init(&(ipc->suspend_thread));
- return RT_EOK;
- }
- /**
- * This function will suspend a thread for a specified IPC object and put the
- * thread into suspend queue of IPC object
- *
- * @param ipc the IPC object
- * @param thread the thread object to be suspended
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_inline rt_err_t rt_ipc_object_suspend(struct rt_ipc_object *ipc, struct rt_thread *thread)
- {
- /* suspend thread */
- rt_thread_suspend(thread);
- switch (ipc->parent.flag)
- {
- case RT_IPC_FLAG_FIFO:
- rt_list_insert_before(&(ipc->suspend_thread), &(thread->tlist));
- break;
- case RT_IPC_FLAG_PRIO:
- {
- struct rt_list_node* n;
- struct rt_thread* sthread;
- /* find a suitable position */
- for (n = ipc->suspend_thread.next; n != &(ipc->suspend_thread);
- n = n->next)
- {
- sthread = rt_list_entry(n, struct rt_thread, tlist);
- /* find out */
- if (thread->current_priority < sthread->current_priority)
- {
- /* insert this thread before the sthread */
- rt_list_insert_before(&(sthread->tlist), &(thread->tlist));
- break;
- }
- }
- /* not found a suitable position, append to the end of suspend_thread list */
- if (n == &(ipc->suspend_thread))
- rt_list_insert_before(&(ipc->suspend_thread), &(thread->tlist));
- }
- break;
- }
- return RT_EOK;
- }
- /**
- * This function will resume a thread from an IPC object:
- * - remove the thread from suspend queue of IPC object
- * - put the thread into system ready queue
- *
- * @param ipc the IPC object
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_inline rt_err_t rt_ipc_object_resume(struct rt_ipc_object* ipc)
- {
- struct rt_thread *thread;
- /* get thread entry */
- thread = rt_list_entry(ipc->suspend_thread.next, struct rt_thread, tlist);
- #ifdef RT_IPC_DEBUG
- rt_kprintf("resume thread:%s\n", thread->name);
- #endif
- /* resume it */
- rt_thread_resume(thread);
- return RT_EOK;
- }
- /**
- * This function will resume all suspended threads in an IPC object.
- *
- * @param ipc the IPC object
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_inline rt_err_t rt_ipc_object_resume_all(struct rt_ipc_object* ipc)
- {
- struct rt_thread* thread;
- register rt_ubase_t temp;
- /* wakeup all suspend threads */
- while (!rt_list_isempty(&(ipc->suspend_thread)))
- {
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* get next suspend thread */
- thread = rt_list_entry(ipc->suspend_thread.next, struct rt_thread, tlist);
- /* set error code to RT_ERROR */
- thread->error = -RT_ERROR;
- /*
- * resume thread
- * In rt_thread_resume function, it will remove current thread from
- * suspend list
- */
- rt_thread_resume(thread);
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- }
- return RT_EOK;
- }
- #ifdef RT_USING_SEMAPHORE
- /**
- * This function will initialize a semaphore and put it under control of resource
- * management.
- *
- * @param sem the semaphore object
- * @param name the name of semaphore
- * @param value the init value of semaphore
- * @param flag the flag of semaphore
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_err_t rt_sem_init (rt_sem_t sem, const char* name, rt_uint32_t value, rt_uint8_t flag)
- {
- RT_ASSERT(sem != RT_NULL);
- /* init object */
- rt_object_init(&(sem->parent.parent), RT_Object_Class_Semaphore, name);
- /* init ipc object */
- rt_ipc_object_init(&(sem->parent));
- /* set init value */
- sem->value = value;
- /* set parent */
- sem->parent.parent.flag = flag;
- return RT_EOK;
- }
- /**
- * This function will detach a semaphore from resource management
- *
- * @param sem the semaphore object
- *
- * @return the operation status, RT_EOK on successful
- *
- * @see rt_sem_delete
- */
- rt_err_t rt_sem_detach (rt_sem_t sem)
- {
- RT_ASSERT(sem != RT_NULL);
- /* wakeup all suspend threads */
- rt_ipc_object_resume_all(&(sem->parent));
- /* detach semaphore object */
- rt_object_detach(&(sem->parent.parent));
- return RT_EOK;
- }
- #ifdef RT_USING_HEAP
- /**
- * This function will create a semaphore from system resource
- *
- * @param name the name of semaphore
- * @param value the init value of semaphore
- * @param flag the flag of semaphore
- *
- * @return the created semaphore, RT_NULL on error happen
- *
- * @see rt_sem_init
- */
- rt_sem_t rt_sem_create (const char* name, rt_uint32_t value, rt_uint8_t flag)
- {
- rt_sem_t sem;
- /* allocate object */
- sem = (rt_sem_t) rt_object_allocate(RT_Object_Class_Semaphore, name);
- if (sem == RT_NULL) return sem;
- /* init ipc object */
- rt_ipc_object_init(&(sem->parent));
- /* set init value */
- sem->value = value;
- /* set parent */
- sem->parent.parent.flag = flag;
- return sem;
- }
- /**
- * This function will delete a semaphore object and release the memory
- *
- * @param sem the semaphore object
- *
- * @return the error code
- *
- * @see rt_sem_detach
- */
- rt_err_t rt_sem_delete (rt_sem_t sem)
- {
- RT_ASSERT(sem != RT_NULL);
- /* wakeup all suspend threads */
- rt_ipc_object_resume_all(&(sem->parent));
- /* delete semaphore object */
- rt_object_delete(&(sem->parent.parent));
- return RT_EOK;
- }
- #endif
- /**
- * This function will take a semaphore, if the semaphore is unavailable, the
- * thread shall wait for a specified time.
- *
- * @param sem the semaphore object
- * @param time the waiting time
- *
- * @return the error code
- */
- rt_err_t rt_sem_take (rt_sem_t sem, rt_int32_t time)
- {
- register rt_base_t temp;
- struct rt_thread* thread;
- RT_ASSERT(sem != RT_NULL);
- #ifdef RT_USING_HOOK
- if (rt_object_trytake_hook != RT_NULL) rt_object_trytake_hook(&(sem->parent.parent));
- #endif
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- #ifdef RT_IPC_DEBUG
- rt_kprintf("thread %s take sem:%s, which value is: %d\n", rt_thread_self()->name,
- ((struct rt_object*)sem)->name, sem->value);
- #endif
- if (sem->value > 0)
- {
- /* semaphore is available */
- sem->value --;
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- }
- else
- {
- /* no waiting, return with timeout */
- if (time == 0 )
- {
- rt_hw_interrupt_enable(temp);
- return -RT_ETIMEOUT;
- }
- else
- {
- /* semaphore is unavailable, push to suspend list */
- /* get current thread */
- thread = rt_thread_self();
- /* reset thread error number */
- thread->error = RT_EOK;
- #ifdef RT_IPC_DEBUG
- rt_kprintf("sem take: suspend thread - %s\n", thread->name);
- #endif
- /* suspend thread */
- rt_ipc_object_suspend(&(sem->parent), thread);
- /* has waiting time, start thread timer */
- if (time > 0)
- {
- #ifdef RT_IPC_DEBUG
- rt_kprintf("set thread:%s to timer list\n", thread->name);
- #endif
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread->thread_timer), RT_TIMER_CTRL_SET_TIME, &time);
- rt_timer_start(&(thread->thread_timer));
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- /* do schedule */
- rt_schedule();
- if (thread->error != RT_EOK)
- {
- return thread->error;
- }
- }
- }
- #ifdef RT_USING_HOOK
- if (rt_object_take_hook != RT_NULL) rt_object_take_hook(&(sem->parent.parent));
- #endif
- return RT_EOK;
- }
- /**
- * This function will try to take a semaphore and immediately return
- *
- * @param sem the semaphore object
- *
- * @return the error code
- */
- rt_err_t rt_sem_trytake(rt_sem_t sem)
- {
- return rt_sem_take(sem, 0);
- }
- /**
- * This function will release a semaphore, if there are threads suspended on
- * semaphore, it will be waked up.
- *
- * @param sem the semaphore object
- *
- * @return the error code
- */
- rt_err_t rt_sem_release(rt_sem_t sem)
- {
- register rt_base_t temp;
- register rt_bool_t need_schedule;
- #ifdef RT_USING_HOOK
- if (rt_object_put_hook != RT_NULL) rt_object_put_hook(&(sem->parent.parent));
- #endif
- need_schedule = RT_FALSE;
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- #ifdef RT_IPC_DEBUG
- rt_kprintf("thread %s releases sem:%s, which value is: %d\n", rt_thread_self()->name,
- ((struct rt_object*)sem)->name, sem->value);
- #endif
- if ( !rt_list_isempty(&sem->parent.suspend_thread) )
- {
- /* resume the suspended thread */
- rt_ipc_object_resume(&(sem->parent));
- need_schedule = RT_TRUE;
- }
- else sem->value ++; /* increase value */
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- /* resume a thread, re-schedule */
- if (need_schedule == RT_TRUE) rt_schedule();
- return RT_EOK;
- }
- /**
- * This function can get or set some extra attributions of a semaphore object.
- *
- * @param sem the semaphore object
- * @param cmd the execution command
- * @param arg the execution argument
- *
- * @return the error code
- */
- rt_err_t rt_sem_control(rt_sem_t sem, rt_uint8_t cmd, void* arg)
- {
- return RT_EOK;
- }
- #endif /* end of RT_USING_SEMAPHORE */
- #ifdef RT_USING_MUTEX
- /**
- * This function will initialize a mutex and put it under control of resource
- * management.
- *
- * @param mutex the mutex object
- * @param name the name of mutex
- * @param flag the flag of mutex
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_err_t rt_mutex_init (rt_mutex_t mutex, const char* name, rt_uint8_t flag)
- {
- RT_ASSERT(mutex != RT_NULL);
- /* init object */
- rt_object_init(&(mutex->parent.parent), RT_Object_Class_Mutex, name);
- /* init ipc object */
- rt_ipc_object_init(&(mutex->parent));
- mutex->value = 1;
- mutex->owner = RT_NULL;
- mutex->original_priority = 0xFF;
- mutex->hold = 0;
- /* set flag */
- mutex->parent.parent.flag = flag;
- return RT_EOK;
- }
- /**
- * This function will detach a mutex from resource management
- *
- * @param mutex the mutex object
- *
- * @return the operation status, RT_EOK on successful
- *
- * @see rt_mutex_delete
- */
- rt_err_t rt_mutex_detach (rt_mutex_t mutex)
- {
- RT_ASSERT(mutex != RT_NULL);
- /* wakeup all suspend threads */
- rt_ipc_object_resume_all(&(mutex->parent));
- /* detach semaphore object */
- rt_object_detach(&(mutex->parent.parent));
- return RT_EOK;
- }
- #ifdef RT_USING_HEAP
- /**
- * This function will create a mutex from system resource
- *
- * @param name the name of mutex
- * @param flag the flag of mutex
- *
- * @return the created mutex, RT_NULL on error happen
- *
- * @see rt_mutex_init
- */
- rt_mutex_t rt_mutex_create (const char* name, rt_uint8_t flag)
- {
- struct rt_mutex *mutex;
- /* allocate object */
- mutex = (rt_mutex_t) rt_object_allocate(RT_Object_Class_Mutex, name);
- if (mutex == RT_NULL) return mutex;
- /* init ipc object */
- rt_ipc_object_init(&(mutex->parent));
- mutex->value = 1;
- mutex->owner = RT_NULL;
- mutex->original_priority = 0xFF;
- mutex->hold = 0;
- /* set flag */
- mutex->parent.parent.flag = flag;
- return mutex;
- }
- /**
- * This function will delete a mutex object and release the memory
- *
- * @param mutex the mutex object
- *
- * @return the error code
- *
- * @see rt_mutex_detach
- */
- rt_err_t rt_mutex_delete (rt_mutex_t mutex)
- {
- RT_ASSERT(mutex != RT_NULL);
- /* wakeup all suspend threads */
- rt_ipc_object_resume_all(&(mutex->parent));
- /* delete semaphore object */
- rt_object_delete(&(mutex->parent.parent));
- return RT_EOK;
- }
- #endif
- /**
- * This function will take a mutex, if the mutex is unavailable, the
- * thread shall wait for a specified time.
- *
- * @param mutex the mutex object
- * @param time the waiting time
- *
- * @return the error code
- */
- rt_err_t rt_mutex_take (rt_mutex_t mutex, rt_int32_t time)
- {
- register rt_base_t temp;
- struct rt_thread* thread;
- RT_ASSERT(mutex != RT_NULL);
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* get current thread */
- thread = rt_thread_self();
- #ifdef RT_USING_HOOK
- if (rt_object_trytake_hook != RT_NULL) rt_object_trytake_hook(&(mutex->parent.parent));
- #endif
- #ifdef RT_IPC_DEBUG
- rt_kprintf("mutex_take: current thread %s, mutex value: %d, hold: %d\n",
- thread->name, mutex->value, mutex->hold);
- #endif
- /* reset thread error */
- thread->error = RT_EOK;
- if (mutex->owner == thread)
- {
- /* it's the same thread */
- mutex->hold ++;
- }
- else
- {
- /* in initialization status, the value is 1. Therefore, if the
- * value is great than 1, which indicates the mutex is avaible.
- */
- if (mutex->value > 0)
- {
- /* mutex is available */
- mutex->value --;
- /* set mutex owner and original priority */
- mutex->owner = thread;
- mutex->original_priority = thread->current_priority;
- mutex->hold ++;
- }
- else
- {
- /* no waiting, return with timeout */
- if (time == 0 )
- {
- /* set error as timeout */
- thread->error = -RT_ETIMEOUT;
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- return -RT_ETIMEOUT;
- }
- else
- {
- /* mutex is unavailable, push to suspend list */
- #ifdef RT_IPC_DEBUG
- rt_kprintf("mutex_take: suspend thread: %s\n", thread->name);
- #endif
- /* change the owner thread priority of mutex */
- if (thread->current_priority < mutex->owner->current_priority)
- {
- /* change the owner thread priority */
- rt_thread_control(mutex->owner, RT_THREAD_CTRL_CHANGE_PRIORITY,
- &thread->current_priority);
- }
- /* suspend current thread */
- rt_ipc_object_suspend(&(mutex->parent), thread);
- /* has waiting time, start thread timer */
- if (time > 0)
- {
- #ifdef RT_IPC_DEBUG
- rt_kprintf("mutex_take: start the timer of thread:%s\n", thread->name);
- #endif
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread->thread_timer), RT_TIMER_CTRL_SET_TIME, &time);
- rt_timer_start(&(thread->thread_timer));
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- /* do schedule */
- rt_schedule();
- if (thread->error != RT_EOK)
- {
- /* return error */
- return thread->error;
- }
- else
- {
- /* the mutex is taken successfully. */
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- }
- }
- }
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- #ifdef RT_USING_HOOK
- if (rt_object_take_hook != RT_NULL) rt_object_take_hook(&(mutex->parent.parent));
- #endif
- return RT_EOK;
- }
- /**
- * This function will release a mutex, if there are threads suspended on mutex,
- * it will be waked up.
- *
- * @param mutex the mutex object
- *
- * @return the error code
- */
- rt_err_t rt_mutex_release(rt_mutex_t mutex)
- {
- register rt_base_t temp;
- struct rt_thread* thread;
- rt_bool_t need_schedule;
- need_schedule = RT_FALSE;
- /* get current thread */
- thread = rt_thread_self();
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- #ifdef RT_IPC_DEBUG
- rt_kprintf("mutex_release:current thread %s, mutex value: %d, hold: %d\n",
- thread->name, mutex->value, mutex->hold);
- #endif
- #ifdef RT_USING_HOOK
- if (rt_object_put_hook != RT_NULL) rt_object_put_hook(&(mutex->parent.parent));
- #endif
- /* mutex only can be released by owner */
- if (thread != mutex->owner)
- {
- thread->error = -RT_ERROR;
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- return -RT_ERROR;
- }
- /* decrease hold */
- mutex->hold --;
- /* if no hold */
- if (mutex->hold == 0)
- {
- /* change the owner thread to original priority */
- if (mutex->owner->init_priority != mutex->owner->current_priority)
- {
- rt_thread_control(mutex->owner, RT_THREAD_CTRL_CHANGE_PRIORITY,
- &(mutex->owner->init_priority));
- }
- /* wakeup suspended thread */
- if( !rt_list_isempty(&mutex->parent.suspend_thread) )
- {
- /* get thread entry */
- thread = rt_list_entry(mutex->parent.suspend_thread.next, struct rt_thread, tlist);
- #ifdef RT_IPC_DEBUG
- rt_kprintf("mutex_release: resume thread: %s\n", thread->name);
- #endif
- /* set new owner and priority */
- mutex->owner = thread;
- mutex->original_priority = thread->current_priority;
- mutex->hold ++;
- /* resume thread */
- rt_ipc_object_resume(&(mutex->parent));
- need_schedule = RT_TRUE;
- }
- else
- {
- /* increase value */
- mutex->value ++;
- /* clear owner */
- mutex->owner = RT_NULL;
- mutex->original_priority = 0;
- }
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- /* perform a schedule */
- if (need_schedule == RT_TRUE) rt_schedule();
- return RT_EOK;
- }
- /**
- * This function can get or set some extra attributions of a mutex object.
- *
- * @param mutex the mutex object
- * @param cmd the execution command
- * @param arg the execution argument
- *
- * @return the error code
- */
- rt_err_t rt_mutex_control(rt_mutex_t mutex, rt_uint8_t cmd, void* arg)
- {
- return RT_EOK;
- }
- #endif /* end of RT_USING_MUTEX */
- #ifdef RT_USING_EVENT
- /**
- * This function will initialize an event and put it under control of resource
- * management.
- *
- * @param event the event object
- * @param name the name of event
- * @param flag the flag of event
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_err_t rt_event_init(rt_event_t event, const char* name, rt_uint8_t flag)
- {
- RT_ASSERT(event != RT_NULL);
- /* init object */
- rt_object_init(&(event->parent.parent), RT_Object_Class_Event, name);
- /* set parent flag */
- event->parent.parent.flag = flag;
- /* init ipc object */
- rt_ipc_object_init(&(event->parent));
- /* init event */
- event->set = 0;
- return RT_EOK;
- }
- /**
- * This function will detach an event object from resource management
- *
- * @param event the event object
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_err_t rt_event_detach(rt_event_t event)
- {
- /* parameter check */
- RT_ASSERT(event != RT_NULL);
- /* resume all suspended thread */
- rt_ipc_object_resume_all(&(event->parent));
- /* detach event object */
- rt_object_detach(&(event->parent.parent));
- return RT_EOK;
- }
- #ifdef RT_USING_HEAP
- /**
- * This function will create an event object from system resource
- *
- * @param name the name of event
- * @param flag the flag of event
- *
- * @return the created event, RT_NULL on error happen
- */
- rt_event_t rt_event_create (const char* name, rt_uint8_t flag)
- {
- rt_event_t event;
- /* allocate object */
- event = (rt_event_t) rt_object_allocate(RT_Object_Class_Event, name);
- if (event == RT_NULL) return event;
- /* set parent */
- event->parent.parent.flag = flag;
- /* init ipc object */
- rt_ipc_object_init(&(event->parent));
- /* init event */
- event->set = 0;
- return event;
- }
- /**
- * This function will delete an event object and release the memory
- *
- * @param event the event object
- *
- * @return the error code
- */
- rt_err_t rt_event_delete (rt_event_t event)
- {
- /* parameter check */
- RT_ASSERT(event != RT_NULL);
- /* resume all suspended thread */
- rt_ipc_object_resume_all(&(event->parent));
- /* delete event object */
- rt_object_delete(&(event->parent.parent));
- return RT_EOK;
- }
- #endif
- /**
- * This function will send an event to the event object, if there are threads
- * suspended on event object, it will be waked up.
- *
- * @param event the event object
- * @param set the event set
- *
- * @return the error code
- */
- rt_err_t rt_event_send(rt_event_t event, rt_uint32_t set)
- {
- struct rt_list_node *n;
- struct rt_thread *thread;
- register rt_ubase_t level;
- register rt_base_t status;
- rt_bool_t need_schedule;
- /* parameter check */
- RT_ASSERT(event != RT_NULL);
- if (set == 0) return -RT_ERROR;
- need_schedule = RT_FALSE;
- #ifdef RT_USING_HOOK
- if (rt_object_put_hook != RT_NULL) rt_object_put_hook(&(event->parent.parent));
- #endif
- /* disable interrupt */
- level = rt_hw_interrupt_disable();
- /* set event */
- event->set |= set;
- if( !rt_list_isempty(&event->parent.suspend_thread) )
- {
- /* search thread list to resume thread */
- n = event->parent.suspend_thread.next;
- while (n != &(event->parent.suspend_thread))
- {
- /* get thread */
- thread = rt_list_entry(n, struct rt_thread, tlist);
- status = -RT_ERROR;
- if (thread->event_info & RT_EVENT_FLAG_AND)
- {
- if ((thread->event_set & event->set) == thread->event_set)
- {
- /* received an AND event */
- status = RT_EOK;
- }
- }
- else if (thread->event_info & RT_EVENT_FLAG_OR)
- {
- if (thread->event_set & event->set)
- {
- /* save recieved event set */
- thread->event_set = thread->event_set & event->set;
- /* received an OR event */
- status = RT_EOK;
- }
- }
- /* move node to the next */
- n = n->next;
- /* condition is satisfied, resume thread */
- if (status == RT_EOK)
- {
- /* clear event */
- if (thread->event_info & RT_EVENT_FLAG_CLEAR)
- event->set &= ~thread->event_set;
- /* resume thread, and thread list breaks out */
- rt_thread_resume(thread);
- /* need do a scheduling */
- need_schedule = RT_TRUE;
- }
- }
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- /* do a schedule */
- if (need_schedule == RT_TRUE)
- rt_schedule();
- return RT_EOK;
- }
- /**
- * This function will receive an event from event object, if the event is unavailable,
- * the thread shall wait for a specified time.
- *
- * @param event the fast event object
- * @param set the interested event set
- * @param option the receive option
- * @param timeout the waiting time
- * @param recved the received event
- *
- * @return the error code
- */
- rt_err_t rt_event_recv(rt_event_t event, rt_uint32_t set, rt_uint8_t option, rt_int32_t timeout, rt_uint32_t* recved)
- {
- struct rt_thread *thread;
- register rt_ubase_t level;
- register rt_base_t status;
- /* parameter check */
- RT_ASSERT(event != RT_NULL);
- if (set == 0) return -RT_ERROR;
- /* init status */
- status = -RT_ERROR;
- /* get current thread */
- thread = rt_thread_self();
- /* reset thread error */
- thread->error = RT_EOK;
- #ifdef RT_USING_HOOK
- if (rt_object_trytake_hook != RT_NULL) rt_object_trytake_hook(&(event->parent.parent));
- #endif
- /* disable interrupt */
- level = rt_hw_interrupt_disable();
- /* check event set */
- if (option & RT_EVENT_FLAG_AND)
- {
- if ((event->set & set) == set) status = RT_EOK;
- }
- else if (option & RT_EVENT_FLAG_OR)
- {
- if (event->set & set) status = RT_EOK;
- }
- if (status == RT_EOK)
- {
- /* set received event */
- *recved = (event->set & set);
- /* received event */
- if (option & RT_EVENT_FLAG_CLEAR) event->set &= ~set;
- }
- else if (timeout == 0)
- {
- /* no waiting */
- thread->error = -RT_ETIMEOUT;
- }
- else
- {
- /* fill thread event info */
- thread->event_set = set;
- thread->event_info = option;
- /* put thread to suspended thread list */
- rt_ipc_object_suspend(&(event->parent), thread);
- /* if there is a waiting timeout, active thread timer */
- if (timeout > 0)
- {
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread->thread_timer), RT_TIMER_CTRL_SET_TIME, &timeout);
- rt_timer_start(&(thread->thread_timer));
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- /* do a schedule */
- rt_schedule();
- if (thread->error != RT_EOK)
- {
- /* return error */
- return thread->error;
- }
- /* received an event, disable interrupt to protect */
- level = rt_hw_interrupt_disable();
- /* set received event */
- *recved = thread->event_set;
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(level);
- #ifdef RT_USING_HOOK
- if (rt_object_take_hook != RT_NULL) rt_object_take_hook(&(event->parent.parent));
- #endif
- return thread->error;
- }
- /**
- * This function can get or set some extra attributions of an event object.
- *
- * @param event the event object
- * @param cmd the execution command
- * @param arg the execution argument
- *
- * @return the error code
- */
- rt_err_t rt_event_control (rt_event_t event, rt_uint8_t cmd, void* arg)
- {
- return RT_EOK;
- }
- #endif /* end of RT_USING_EVENT */
- #ifdef RT_USING_MAILBOX
- /**
- * This function will initialize a mailbox and put it under control of resource
- * management.
- *
- * @param mb the mailbox object
- * @param name the name of mailbox
- * @param msgpool the begin address of buffer to save received mail
- * @param size the size of mailbox
- * @param flag the flag of mailbox
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_err_t rt_mb_init(rt_mailbox_t mb, const char* name, void* msgpool, rt_size_t size, rt_uint8_t flag)
- {
- RT_ASSERT(mb != RT_NULL);
- /* init object */
- rt_object_init(&(mb->parent.parent), RT_Object_Class_MailBox, name);
- /* set parent flag */
- mb->parent.parent.flag = flag;
- /* init ipc object */
- rt_ipc_object_init(&(mb->parent));
- /* init mailbox */
- mb->msg_pool = msgpool;
- mb->size = size;
- mb->entry = 0;
- mb->in_offset = 0;
- mb->out_offset = 0;
- return RT_EOK;
- }
- /**
- * This function will detach a mailbox from resource management
- *
- * @param mb the mailbox object
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_err_t rt_mb_detach(rt_mailbox_t mb)
- {
- /* parameter check */
- RT_ASSERT(mb != RT_NULL);
- /* resume all suspended thread */
- rt_ipc_object_resume_all(&(mb->parent));
- /* detach mailbox object */
- rt_object_detach(&(mb->parent.parent));
- return RT_EOK;
- }
- #ifdef RT_USING_HEAP
- /**
- * This function will create a mailbox object from system resource
- *
- * @param name the name of mailbox
- * @param size the size of mailbox
- * @param flag the flag of mailbox
- *
- * @return the created mailbox, RT_NULL on error happen
- */
- rt_mailbox_t rt_mb_create (const char* name, rt_size_t size, rt_uint8_t flag)
- {
- rt_mailbox_t mb;
- /* allocate object */
- mb = (rt_mailbox_t) rt_object_allocate(RT_Object_Class_MailBox, name);
- if (mb == RT_NULL) return mb;
- /* set parent */
- mb->parent.parent.flag = flag;
- /* init ipc object */
- rt_ipc_object_init(&(mb->parent));
- /* init mailbox */
- mb->size = size;
- mb->msg_pool = rt_malloc(mb->size * sizeof(rt_uint32_t));
- if (mb->msg_pool == RT_NULL)
- {
- /* delete mailbox object */
- rt_object_delete(&(mb->parent.parent));
- return RT_NULL;
- }
- mb->entry = 0;
- mb->in_offset = 0;
- mb->out_offset = 0;
- return mb;
- }
- /**
- * This function will delete a mailbox object and release the memory
- *
- * @param mb the mailbox object
- *
- * @return the error code
- */
- rt_err_t rt_mb_delete (rt_mailbox_t mb)
- {
- /* parameter check */
- RT_ASSERT(mb != RT_NULL);
- /* resume all suspended thread */
- rt_ipc_object_resume_all(&(mb->parent));
- /* free mailbox pool */
- rt_free(mb->msg_pool);
- /* delete mailbox object */
- rt_object_delete(&(mb->parent.parent));
- return RT_EOK;
- }
- #endif
- /**
- * This function will send a mail to mailbox object, if there are threads suspended
- * on mailbox object, it will be waked up.
- *
- * @param mb the mailbox object
- * @param value the mail
- *
- * @return the error code
- */
- rt_err_t rt_mb_send (rt_mailbox_t mb, rt_uint32_t value)
- {
- register rt_ubase_t temp;
- /* parameter check */
- RT_ASSERT(mb != RT_NULL);
- #ifdef RT_USING_HOOK
- if (rt_object_put_hook != RT_NULL) rt_object_put_hook(&(mb->parent.parent));
- #endif
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* mailbox is full */
- if (mb->entry == mb->size)
- {
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- return -RT_EFULL;
- }
- /* set ptr */
- mb->msg_pool[mb->in_offset] = value;
- /* increase input offset */
- ++ mb->in_offset;
- mb->in_offset %= mb->size;
- /* increase message entry */
- mb->entry ++;
- /* resume suspended thread */
- if( !rt_list_isempty(&mb->parent.suspend_thread) )
- {
- rt_ipc_object_resume(&(mb->parent));
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- rt_schedule();
- return RT_EOK;
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- return RT_EOK;
- }
- /**
- * This function will receive a mail from mailbox object, if there is no mail in
- * mailbox object, the thread shall wait for a specified time.
- *
- * @param mb the mailbox object
- * @param value the received mail will be saved in
- * @param timeout the waiting time
- *
- * @return the error code
- */
- rt_err_t rt_mb_recv (rt_mailbox_t mb, rt_uint32_t* value, rt_int32_t timeout)
- {
- struct rt_thread *thread;
- register rt_ubase_t temp;
- rt_uint32_t tick_delta;
- /* parameter check */
- RT_ASSERT(mb != RT_NULL);
- tick_delta = 0;
- #ifdef RT_USING_HOOK
- if (rt_object_trytake_hook != RT_NULL) rt_object_trytake_hook(&(mb->parent.parent));
- #endif
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* get current thread */
- thread = rt_thread_self();
- /* mailbox is empty */
- while (mb->entry == 0)
- {
- /* reset error number in thread */
- thread->error = RT_EOK;
- /* no waiting, return timeout */
- if (timeout == 0)
- {
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- thread->error = -RT_ETIMEOUT;
- return -RT_ETIMEOUT;
- }
- /* suspend current thread */
- rt_ipc_object_suspend(&(mb->parent), thread);
- /* has waiting time, start thread timer */
- if (timeout > 0)
- {
- /* get the start tick of timer */
- tick_delta = rt_tick_get();
- #ifdef RT_IPC_DEBUG
- rt_kprintf("mb_recv: start timer of thread:%s\n", thread->name);
- #endif
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread->thread_timer), RT_TIMER_CTRL_SET_TIME, &timeout);
- rt_timer_start(&(thread->thread_timer));
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- /* re-schedule */
- rt_schedule();
- /* resume from suspend state */
- if (thread->error != RT_EOK)
- {
- /* return error */
- return thread->error;
- }
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* re-calculate timeout tick */
- if (timeout > 0)
- {
- tick_delta = rt_tick_get() - tick_delta;
- timeout -= tick_delta;
- if (timeout < 0) timeout = 0;
- }
- }
- /* fill ptr */
- *value = mb->msg_pool[mb->out_offset];
- /* increase output offset */
- ++mb->out_offset;
- mb->out_offset %= mb->size;
- /* decrease message entry */
- mb->entry --;
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- #ifdef RT_USING_HOOK
- if (rt_object_take_hook != RT_NULL) rt_object_take_hook(&(mb->parent.parent));
- #endif
- return RT_EOK;
- }
- /**
- * This function can get or set some extra attributions of a mailbox object.
- *
- * @param mb the mailbox object
- * @param cmd the execution command
- * @param arg the execution argument
- *
- * @return the error code
- */
- rt_err_t rt_mb_control(rt_mailbox_t mb, rt_uint8_t cmd, void* arg)
- {
- return RT_EOK;
- }
- #endif /* end of RT_USING_MAILBOX */
- #ifdef RT_USING_MESSAGEQUEUE
- struct rt_mq_message
- {
- struct rt_mq_message* next;
- };
- /**
- * This function will initialize a message queue and put it under control of resource
- * management.
- *
- * @param mq the message object
- * @param name the name of message queue
- * @param msgpool the beginning address of buffer to save messages
- * @param msg_size the maximum size of message
- * @param pool_size the size of buffer to save messages
- * @param flag the flag of message queue
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_err_t rt_mq_init(rt_mq_t mq, const char* name, void *msgpool, rt_size_t msg_size, rt_size_t pool_size, rt_uint8_t flag)
- {
- struct rt_mq_message* head;
- register rt_base_t temp;
- /* parameter check */
- RT_ASSERT(mq != RT_NULL);
- /* init object */
- rt_object_init(&(mq->parent.parent), RT_Object_Class_MessageQueue, name);
- /* set parent flag */
- mq->parent.parent.flag = flag;
- /* init ipc object */
- rt_ipc_object_init(&(mq->parent));
- /* set messasge pool */
- mq->msg_pool = msgpool;
- /* get correct message size */
- mq->msg_size = RT_ALIGN(msg_size, RT_ALIGN_SIZE);
- mq->max_msgs = pool_size / (mq->msg_size + sizeof(struct rt_mq_message));
- /* init message list */
- mq->msg_queue_head = RT_NULL;
- mq->msg_queue_tail = RT_NULL;
- /* init message empty list */
- mq->msg_queue_free = RT_NULL;
- for (temp = 0; temp < mq->max_msgs; temp ++)
- {
- head = (struct rt_mq_message*)((rt_uint8_t*)mq->msg_pool +
- temp * (mq->msg_size + sizeof(struct rt_mq_message)));
- head->next = mq->msg_queue_free;
- mq->msg_queue_free = head;
- }
- /* the initial entry is zero */
- mq->entry = 0;
- return RT_EOK;
- }
- /**
- * This function will detach a message queue object from resource management
- *
- * @param mq the message queue object
- *
- * @return the operation status, RT_EOK on successful
- */
- rt_err_t rt_mq_detach(rt_mq_t mq)
- {
- /* parameter check */
- RT_ASSERT(mq != RT_NULL);
- /* resume all suspended thread */
- rt_ipc_object_resume_all((struct rt_ipc_object*)mq);
- /* detach message queue object */
- rt_object_detach(&(mq->parent.parent));
- return RT_EOK;
- }
- #ifdef RT_USING_HEAP
- /**
- * This function will create a message queue object from system resource
- *
- * @param name the name of message queue
- * @param msg_size the size of message
- * @param max_msgs the maximum number of message in queue
- * @param flag the flag of message queue
- *
- * @return the created message queue, RT_NULL on error happen
- */
- rt_mq_t rt_mq_create (const char* name, rt_size_t msg_size, rt_size_t max_msgs, rt_uint8_t flag)
- {
- struct rt_messagequeue* mq;
- struct rt_mq_message* head;
- register rt_base_t temp;
- /* allocate object */
- mq = (rt_mq_t) rt_object_allocate(RT_Object_Class_MessageQueue, name);
- if (mq == RT_NULL) return mq;
- /* set parent */
- mq->parent.parent.flag = flag;
- /* init ipc object */
- rt_ipc_object_init(&(mq->parent));
- /* init message queue */
- /* get correct message size */
- mq->msg_size = RT_ALIGN(msg_size, RT_ALIGN_SIZE);
- mq->max_msgs = max_msgs;
- /* allocate message pool */
- mq->msg_pool = rt_malloc((mq->msg_size + sizeof(struct rt_mq_message))* mq->max_msgs);
- if (mq->msg_pool == RT_NULL)
- {
- rt_mq_delete(mq);
- return RT_NULL;
- }
- /* init message list */
- mq->msg_queue_head = RT_NULL;
- mq->msg_queue_tail = RT_NULL;
- /* init message empty list */
- mq->msg_queue_free = RT_NULL;
- for (temp = 0; temp < mq->max_msgs; temp ++)
- {
- head = (struct rt_mq_message*)((rt_uint8_t*)mq->msg_pool +
- temp * (mq->msg_size + sizeof(struct rt_mq_message)));
- head->next = mq->msg_queue_free;
- mq->msg_queue_free = head;
- }
- /* the initial entry is zero */
- mq->entry = 0;
- return mq;
- }
- /**
- * This function will delete a message queue object and release the memory
- *
- * @param mq the message queue object
- *
- * @return the error code
- */
- rt_err_t rt_mq_delete (rt_mq_t mq)
- {
- /* parameter check */
- RT_ASSERT(mq != RT_NULL);
- /* resume all suspended thread */
- rt_ipc_object_resume_all(&(mq->parent));
- /* free mailbox pool */
- rt_free(mq->msg_pool);
- /* delete mailbox object */
- rt_object_delete(&(mq->parent.parent));
- return RT_EOK;
- }
- #endif
- /**
- * This function will send a message to message queue object, if there are threads
- * suspended on message queue object, it will be waked up.
- *
- * @param mq the message queue object
- * @param buffer the message
- * @param size the size of buffer
- *
- * @return the error code
- */
- rt_err_t rt_mq_send (rt_mq_t mq, void* buffer, rt_size_t size)
- {
- register rt_ubase_t temp;
- struct rt_mq_message *msg;
- /* greater than one message size */
- if (size > mq->msg_size) return -RT_ERROR;
- #ifdef RT_USING_HOOK
- if (rt_object_put_hook != RT_NULL) rt_object_put_hook(&(mq->parent.parent));
- #endif
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* get a free list, there must be an empty item */
- msg = (struct rt_mq_message*)mq->msg_queue_free;
- /* message queue is full */
- if (msg == RT_NULL)
- {
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- return -RT_EFULL;
- }
- /* move free list pointer */
- mq->msg_queue_free = msg->next;
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- /* copy buffer */
- rt_memcpy(msg + 1, buffer, size);
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* link msg to message queue */
- if (mq->msg_queue_tail != RT_NULL)
- {
- /* if the tail exists, */
- ((struct rt_mq_message*)mq->msg_queue_tail)->next = msg;
- }
- /* the msg is the new tail of list, the next shall be NULL */
- msg->next = RT_NULL;
- /* set new tail */
- mq->msg_queue_tail = msg;
- /* if the head is empty, set head */
- if (mq->msg_queue_head == RT_NULL)mq->msg_queue_head = msg;
- /* increase message entry */
- mq->entry ++;
- /* resume suspended thread */
- if( !rt_list_isempty(&mq->parent.suspend_thread) )
- {
- rt_ipc_object_resume(&(mq->parent));
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- rt_schedule();
- return RT_EOK;
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- return RT_EOK;
- }
- /**
- * This function will send urgently a message to message queue object, which means
- * the message will be inserted to the head of message queue. If there are threads
- * suspended on message queue object, it will be waked up.
- *
- * @param mq the message queue object
- * @param buffer the message
- * @param size the size of buffer
- *
- * @return the error code
- */
- rt_err_t rt_mq_urgent(rt_mq_t mq, void* buffer, rt_size_t size)
- {
- register rt_ubase_t temp;
- struct rt_mq_message *msg;
- /* greater than one message size */
- if (size > mq->msg_size) return -RT_ERROR;
- #ifdef RT_USING_HOOK
- if (rt_object_put_hook != RT_NULL) rt_object_put_hook(&(mq->parent.parent));
- #endif
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* get a free list, there must be an empty item */
- msg = (struct rt_mq_message*)mq->msg_queue_free;
- /* message queue is full */
- if (msg == RT_NULL)
- {
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- return -RT_EFULL;
- }
- /* move free list pointer */
- mq->msg_queue_free = msg->next;
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- /* copy buffer */
- rt_memcpy(msg + 1, buffer, size);
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* link msg to the beginning of message queue */
- msg->next = mq->msg_queue_head;
- mq->msg_queue_head = msg;
- /* if there is no tail */
- if (mq->msg_queue_tail == RT_NULL) mq->msg_queue_tail = msg;
- /* increase message entry */
- mq->entry ++;
- /* resume suspended thread */
- if( !rt_list_isempty(&mq->parent.suspend_thread) )
- {
- rt_ipc_object_resume(&(mq->parent));
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- rt_schedule();
- return RT_EOK;
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- return RT_EOK;
- }
- /**
- * This function will receive a message from message queue object, if there is no
- * message in message queue object, the thread shall wait for a specified time.
- *
- * @param mq the message queue object
- * @param buffer the received message will be saved in
- * @param size the size of buffer
- * @param timeout the waiting time
- *
- * @return the error code
- */
- rt_err_t rt_mq_recv (rt_mq_t mq, void* buffer, rt_size_t size, rt_int32_t timeout)
- {
- struct rt_thread *thread;
- register rt_ubase_t temp;
- struct rt_mq_message *msg;
- rt_uint32_t tick_delta;
- #ifdef RT_USING_HOOK
- if (rt_object_trytake_hook != RT_NULL) rt_object_trytake_hook(&(mq->parent.parent));
- #endif
- tick_delta = 0;
- /* get current thread */
- thread = rt_thread_self();
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* message queue is empty */
- while (mq->entry == 0)
- {
- /* reset error number in thread */
- thread->error = RT_EOK;
- /* no waiting, return timeout */
- if (timeout == 0)
- {
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- thread->error = -RT_ETIMEOUT;
- return -RT_ETIMEOUT;
- }
- /* suspend current thread */
- rt_ipc_object_suspend(&(mq->parent), thread);
- /* has waiting time, start thread timer */
- if (timeout > 0)
- {
- /* get the start tick of timer */
- tick_delta = rt_tick_get();
- #ifdef RT_IPC_DEBUG
- rt_kprintf("set thread:%s to timer list\n", thread->name);
- #endif
- /* reset the timeout of thread timer and start it */
- rt_timer_control(&(thread->thread_timer), RT_TIMER_CTRL_SET_TIME, &timeout);
- rt_timer_start(&(thread->thread_timer));
- }
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- /* re-schedule */
- rt_schedule();
- /* recv message */
- if (thread->error != RT_EOK)
- {
- /* return error */
- return thread->error;
- }
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* re-calculate timeout tick */
- if (timeout > 0)
- {
- tick_delta = rt_tick_get() - tick_delta;
- timeout -= tick_delta;
- if (timeout < 0) timeout = 0;
- }
- }
- /* get message from queue */
- msg = (struct rt_mq_message*) mq->msg_queue_head;
- /* move message queue head */
- mq->msg_queue_head = msg->next;
- /* reach queue tail, set to NULL */
- if (mq->msg_queue_tail == msg) mq->msg_queue_tail = RT_NULL;
- /* decrease message entry */
- mq->entry --;
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- /* copy message */
- rt_memcpy(buffer, msg + 1,
- size > mq->msg_size? mq->msg_size : size);
- /* disable interrupt */
- temp = rt_hw_interrupt_disable();
- /* put message to free list */
- msg->next = (struct rt_mq_message*)mq->msg_queue_free;
- mq->msg_queue_free = msg;
- /* enable interrupt */
- rt_hw_interrupt_enable(temp);
- #ifdef RT_USING_HOOK
- if (rt_object_take_hook != RT_NULL) rt_object_take_hook(&(mq->parent.parent));
- #endif
- return RT_EOK;
- }
- /**
- * This function can get or set some extra attributions of a message queue object.
- *
- * @param mq the message queue object
- * @param cmd the execution command
- * @param arg the execution argument
- *
- * @return the error code
- */
- rt_err_t rt_mq_control(rt_mq_t mq, rt_uint8_t cmd, void* arg)
- {
- return RT_EOK;
- }
- #endif /* end of RT_USING_MESSAGEQUEUE */
- /*@}*/
|