ipc.c 48.3 KB
Newer Older
1 2 3
/*
 * File      : ipc.c
 * This file is part of RT-Thread RTOS
D
dzzxzz 已提交
4
 * COPYRIGHT (C) 2006 - 2012, RT-Thread Development Team
5 6 7
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
B
bernard.xiong 已提交
8
 * http://www.rt-thread.org/license/LICENSE
9 10 11 12 13
 *
 * Change Logs:
 * Date           Author       Notes
 * 2006-03-14     Bernard      the first version
 * 2006-04-25     Bernard      implement semaphore
14
 * 2006-05-03     Bernard      add RT_IPC_DEBUG
15 16 17 18 19 20 21 22 23 24
 *                             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
B
bernard.xiong 已提交
25
 * 2009-05-21     Yi.qiu       fix the sem release bug
26 27
 * 2009-07-18     Bernard      fix the event clear bug
 * 2009-09-09     Bernard      remove fast event and fix ipc release bug
28
 * 2009-10-10     Bernard      change semaphore and mutex value to unsigned value
B
bernard.xiong 已提交
29
 * 2009-10-25     Bernard      change the mb/mq receive timeout to 0 if the
30
 *                             re-calculated delta tick is a negative number.
B
bernard.xiong 已提交
31
 * 2009-12-16     Bernard      fix the rt_ipc_object_suspend issue when IPC flag
32
 *                             is RT_IPC_FLAG_PRIO
33
 * 2010-01-20     mbbill       remove rt_ipc_object_decrease function.
34
 * 2010-04-20     Bernard      move memcpy outside interrupt disable in mq
qiuyiuestc's avatar
qiuyiuestc 已提交
35
 * 2010-10-26     yi.qiu       add module support in rt_mp_delete and rt_mq_delete
36
 * 2010-11-10     Bernard      add IPC reset command implementation.
37
 * 2011-12-18     Bernard      add more parameter checking in message queue
38 39 40 41 42 43 44 45
 */

#include <rtthread.h>
#include <rthw.h>

#include "kservice.h"

#ifdef RT_USING_HOOK
D
dzzxzz 已提交
46 47 48
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);
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
#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;
}

/**
73 74
 * This function will suspend a thread to a specified list. IPC object or some double-queue
 * object (mailbox etc.) contains this kind of list.
75
 *
B
bernard.xiong@gmail.com 已提交
76
 * @param list the IPC suspended thread list
77
 * @param thread the thread object to be suspended
B
bernard.xiong@gmail.com 已提交
78
 * @param flag the IPC object flag, which shall be RT_IPC_FLAG_FIFO/RT_IPC_FLAG_PRIO.
79 80 81
 *
 * @return the operation status, RT_EOK on successful
 */
82
rt_inline rt_err_t rt_ipc_list_suspend(rt_list_t *list, struct rt_thread *thread, rt_uint8_t flag)
83 84 85 86
{
	/* suspend thread */
	rt_thread_suspend(thread);

87
	switch (flag)
88 89
	{
	case RT_IPC_FLAG_FIFO:
90
		rt_list_insert_before(list, &(thread->tlist));
91 92 93 94
		break;

	case RT_IPC_FLAG_PRIO:
		{
D
dzzxzz 已提交
95 96
			struct rt_list_node *n;
			struct rt_thread *sthread;
97 98

			/* find a suitable position */
99
			for (n = list->next; n != list; n = n->next)
100 101 102 103
			{
				sthread = rt_list_entry(n, struct rt_thread, tlist);

				/* find out */
104 105 106 107 108 109
				if (thread->current_priority < sthread->current_priority)
				{
					/* insert this thread before the sthread */
					rt_list_insert_before(&(sthread->tlist), &(thread->tlist));
					break;
				}
110
			}
B
bernard.xiong 已提交
111 112

			/* not found a suitable position, append to the end of suspend_thread list */
113 114
			if (n == list)
				rt_list_insert_before(list, &(thread->tlist));
115 116 117 118 119 120 121 122
		}
		break;
	}

	return RT_EOK;
}

/**
123
 * This function will resume the first thread in the list of a IPC object:
124 125 126
 * - remove the thread from suspend queue of IPC object
 * - put the thread into system ready queue
 *
127
 * @param list the thread list
128 129 130
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz 已提交
131
rt_inline rt_err_t rt_ipc_list_resume(rt_list_t *list)
132
{
D
dzzxzz 已提交
133
	struct rt_thread *thread;
134 135

	/* get thread entry */
136
	thread = rt_list_entry(list->next, struct rt_thread, tlist);
137

D
dzzxzz 已提交
138
	RT_DEBUG_LOG(RT_DEBUG_IPC, ("resume thread:%s\n", thread->name));
139 140 141 142 143 144 145 146

	/* resume it */
	rt_thread_resume(thread);

	return RT_EOK;
}

/**
147 148
 * This function will resume all suspended threads in a list, including
 * suspend list of IPC object and private list of mailbox etc.
149
 *
150
 * @param list of the threads to resume
151 152 153
 *
 * @return the operation status, RT_EOK on successful
 */
D
dzzxzz 已提交
154
rt_inline rt_err_t rt_ipc_list_resume_all(rt_list_t *list)
155
{
D
dzzxzz 已提交
156
	struct rt_thread *thread;
157 158 159
	register rt_ubase_t temp;

	/* wakeup all suspend threads */
160
	while (!rt_list_isempty(list))
161 162 163 164 165
	{
		/* disable interrupt */
		temp = rt_hw_interrupt_disable();

		/* get next suspend thread */
166
		thread = rt_list_entry(list->next, struct rt_thread, tlist);
167 168 169 170 171 172 173 174
		/* 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
		 */
175
		rt_thread_resume(thread);
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195

		/* 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
 */
D
dzzxzz 已提交
196
rt_err_t rt_sem_init(rt_sem_t sem, const char *name, rt_uint32_t value, rt_uint8_t flag)
197 198 199 200 201 202 203 204 205 206
{
	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 */
D
dzzxzz 已提交
207
	sem->value = value;
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223

	/* 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
 */
D
dzzxzz 已提交
224
rt_err_t rt_sem_detach(rt_sem_t sem)
225 226 227 228
{
	RT_ASSERT(sem != RT_NULL);

	/* wakeup all suspend threads */
229
	rt_ipc_list_resume_all(&(sem->parent.suspend_thread));
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248

	/* 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
 */
D
dzzxzz 已提交
249
rt_sem_t rt_sem_create(const char *name, rt_uint32_t value, rt_uint8_t flag)
250 251 252
{
	rt_sem_t sem;

253
	RT_DEBUG_NOT_IN_INTERRUPT;
254

255
	/* allocate object */
D
dzzxzz 已提交
256
	sem = (rt_sem_t)rt_object_allocate(RT_Object_Class_Semaphore, name);
257 258
	if (sem == RT_NULL)
		return sem;
259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280

	/* 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
 */
D
dzzxzz 已提交
281
rt_err_t rt_sem_delete(rt_sem_t sem)
282
{
283
	RT_DEBUG_NOT_IN_INTERRUPT;
284

285 286 287
	RT_ASSERT(sem != RT_NULL);

	/* wakeup all suspend threads */
288
	rt_ipc_list_resume_all(&(sem->parent.suspend_thread));
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305

	/* 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
 */
D
dzzxzz 已提交
306
rt_err_t rt_sem_take(rt_sem_t sem, rt_int32_t time)
307 308
{
	register rt_base_t temp;
D
dzzxzz 已提交
309
	struct rt_thread *thread;
310 311 312

	RT_ASSERT(sem != RT_NULL);

313
	RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(sem->parent.parent)));
314 315 316 317

	/* disable interrupt */
	temp = rt_hw_interrupt_disable();

318 319
	RT_DEBUG_LOG(RT_DEBUG_IPC,
		("thread %s take sem:%s, which value is: %d\n", rt_thread_self()->name,
D
dzzxzz 已提交
320
		((struct rt_object *)sem)->name, sem->value));
321

322 323 324 325 326 327 328 329 330 331 332 333 334 335
	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);
D
dzzxzz 已提交
336

337 338 339 340
			return -RT_ETIMEOUT;
		}
		else
		{
341 342
			/* current context checking */
			RT_DEBUG_NOT_IN_INTERRUPT;
343

344 345 346 347 348 349 350
			/* semaphore is unavailable, push to suspend list */
			/* get current thread */
			thread = rt_thread_self();

			/* reset thread error number */
			thread->error = RT_EOK;

D
dzzxzz 已提交
351
			RT_DEBUG_LOG(RT_DEBUG_IPC, ("sem take: suspend thread - %s\n", thread->name));
352 353

			/* suspend thread */
354 355
			rt_ipc_list_suspend(&(sem->parent.suspend_thread),
				thread, sem->parent.parent.flag);
356 357 358 359

			/* has waiting time, start thread timer */
			if (time > 0)
			{
D
dzzxzz 已提交
360
				RT_DEBUG_LOG(RT_DEBUG_IPC, ("set thread:%s to timer list\n", thread->name));
361

362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379
				/* 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;
			}
		}
	}

380
	RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(sem->parent.parent)));
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407

	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;
408
	register rt_bool_t need_schedule;
409

410
	RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(sem->parent.parent)));
411

412 413
	need_schedule = RT_FALSE;

414 415 416
	/* disable interrupt */
	temp = rt_hw_interrupt_disable();

417 418
	RT_DEBUG_LOG(RT_DEBUG_IPC,
		("thread %s releases sem:%s, which value is: %d\n", rt_thread_self()->name,
D
dzzxzz 已提交
419
		((struct rt_object *)sem)->name, sem->value));
420

D
dzzxzz 已提交
421
	if (!rt_list_isempty(&sem->parent.suspend_thread))
422
	{
423
		/* resume the suspended thread */
424
		rt_ipc_list_resume(&(sem->parent.suspend_thread));
425
		need_schedule = RT_TRUE;
426
	}
D
dzzxzz 已提交
427 428
	else
		sem->value ++; /* increase value */
429 430 431 432

	/* enable interrupt */
	rt_hw_interrupt_enable(temp);

433
	/* resume a thread, re-schedule */
434 435
	if (need_schedule == RT_TRUE)
		rt_schedule();
436

437 438 439 440 441 442 443 444 445 446 447 448
	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
 */
D
dzzxzz 已提交
449
rt_err_t rt_sem_control(rt_sem_t sem, rt_uint8_t cmd, void *arg)
450
{
451 452 453 454
	rt_ubase_t level;
	RT_ASSERT(sem != RT_NULL);

	if (cmd == RT_IPC_CMD_RESET)
455 456 457 458
	{
		rt_uint32_t value;

		/* get value */
459
		value = (rt_uint32_t)arg;
460 461 462 463
		/* disable interrupt */
		level = rt_hw_interrupt_disable();

		/* resume all waiting thread */
464
		rt_ipc_list_resume_all(&sem->parent.suspend_thread);
465 466

		/* set new value */
467
		sem->value = (rt_uint16_t)value;
468 469 470 471

		/* enable interrupt */
		rt_hw_interrupt_enable(level);

472 473
		rt_schedule();

474 475 476 477
		return RT_EOK;
	}

	return -RT_ERROR;
478 479 480 481 482 483 484 485 486 487 488 489 490 491
}
#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
 */
D
dzzxzz 已提交
492
rt_err_t rt_mutex_init(rt_mutex_t mutex, const char *name, rt_uint8_t flag)
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
{
	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
 */
D
dzzxzz 已提交
522
rt_err_t rt_mutex_detach(rt_mutex_t mutex)
523 524 525 526
{
	RT_ASSERT(mutex != RT_NULL);

	/* wakeup all suspend threads */
527
	rt_ipc_list_resume_all(&(mutex->parent.suspend_thread));
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545

	/* 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
 */
D
dzzxzz 已提交
546
rt_mutex_t rt_mutex_create(const char *name, rt_uint8_t flag)
547
{
D
dzzxzz 已提交
548
	struct rt_mutex *mutex;
549

550
	RT_DEBUG_NOT_IN_INTERRUPT;
551

552
	/* allocate object */
D
dzzxzz 已提交
553
	mutex = (rt_mutex_t)rt_object_allocate(RT_Object_Class_Mutex, name);
554 555
	if (mutex == RT_NULL)
		return mutex;
556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579

	/* 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
 */
D
dzzxzz 已提交
580
rt_err_t rt_mutex_delete(rt_mutex_t mutex)
581
{
582
	RT_DEBUG_NOT_IN_INTERRUPT;
583

584 585 586
	RT_ASSERT(mutex != RT_NULL);

	/* wakeup all suspend threads */
587
	rt_ipc_list_resume_all(&(mutex->parent.suspend_thread));
588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604

	/* 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
 */
D
dzzxzz 已提交
605
rt_err_t rt_mutex_take(rt_mutex_t mutex, rt_int32_t time)
606 607
{
	register rt_base_t temp;
D
dzzxzz 已提交
608
	struct rt_thread *thread;
609

610
	/* this function must not be used in interrupt even if time = 0 */
611
	RT_DEBUG_NOT_IN_INTERRUPT;
612

613 614 615 616 617 618 619 620
	RT_ASSERT(mutex != RT_NULL);

	/* disable interrupt */
	temp = rt_hw_interrupt_disable();

	/* get current thread */
	thread = rt_thread_self();

621
	RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(mutex->parent.parent)));
622

623 624 625
	RT_DEBUG_LOG(RT_DEBUG_IPC,
		("mutex_take: current thread %s, mutex value: %d, hold: %d\n",
		thread->name, mutex->value, mutex->hold));
626

627 628 629 630 631 632 633 634 635 636
	/* reset thread error */
	thread->error = RT_EOK;

	if (mutex->owner == thread)
	{
		/* it's the same thread */
		mutex->hold ++;
	}
	else
	{
637 638
		/* The value of mutex is 1 in initial status. Therefore, if the
		 * value is great than 0, it indicates the mutex is avaible.
639
		 */
640 641 642 643 644 645 646 647 648 649 650 651 652
		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 */
D
dzzxzz 已提交
653
			if (time == 0)
654 655 656 657 658 659 660 661 662 663 664 665
			{
				/* 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 */
666 667 668
				RT_DEBUG_LOG(RT_DEBUG_IPC,
					("mutex_take: suspend thread: %s\n", thread->name));

669 670 671 672 673 674 675 676 677
				/* 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 */
678 679
				rt_ipc_list_suspend(&(mutex->parent.suspend_thread),
				thread, mutex->parent.parent.flag);
680 681 682 683

				/* has waiting time, start thread timer */
				if (time > 0)
				{
684 685 686
					RT_DEBUG_LOG(RT_DEBUG_IPC,
						("mutex_take: start the timer of thread:%s\n", thread->name));

687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
					/* 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
				{
705
					/* the mutex is taken successfully. */
706 707 708 709 710 711 712 713 714 715
					/* disable interrupt */
					temp = rt_hw_interrupt_disable();
				}
			}
		}
	}

	/* enable interrupt */
	rt_hw_interrupt_enable(temp);

716
	RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(mutex->parent.parent)));
717 718 719 720 721 722 723 724 725 726 727 728 729 730 731

	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;
D
dzzxzz 已提交
732
	struct rt_thread *thread;
733
	rt_bool_t need_schedule;
734

735
	need_schedule = RT_FALSE;
736

737 738 739
	/* get current thread */
	thread = rt_thread_self();

740 741 742
	/* disable interrupt */
	temp = rt_hw_interrupt_disable();

743 744 745
	RT_DEBUG_LOG(RT_DEBUG_IPC,
		("mutex_release:current thread %s, mutex value: %d, hold: %d\n",
		thread->name, mutex->value, mutex->hold));
746

747
	RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(mutex->parent.parent)));
748

749
	/* mutex only can be released by owner */
750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765
	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 */
766
		if (mutex->original_priority != mutex->owner->current_priority)
767 768
		{
			rt_thread_control(mutex->owner, RT_THREAD_CTRL_CHANGE_PRIORITY,
769
				&(mutex->original_priority));
770 771
		}

772
		/* wakeup suspended thread */
D
dzzxzz 已提交
773
		if (!rt_list_isempty(&mutex->parent.suspend_thread))
774
		{
775
			/* get suspended thread */
776 777
			thread = rt_list_entry(mutex->parent.suspend_thread.next, struct rt_thread, tlist);

D
dzzxzz 已提交
778
			RT_DEBUG_LOG(RT_DEBUG_IPC, ("mutex_release: resume thread: %s\n", thread->name));
779

780 781 782 783
			/* set new owner and priority */
			mutex->owner = thread;
			mutex->original_priority = thread->current_priority;
			mutex->hold ++;
784 785

			/* resume thread */
786
			rt_ipc_list_resume(&(mutex->parent.suspend_thread));
787 788

			need_schedule = RT_TRUE;
789
		}
790 791
		else
		{
792 793 794
			/* increase value */
			mutex->value ++;

B
bernard.xiong 已提交
795 796
			/* clear owner */
			mutex->owner = RT_NULL;
797
			mutex->original_priority = 0xff;
798
		}
799 800 801 802 803
	}

	/* enable interrupt */
	rt_hw_interrupt_enable(temp);

804
	/* perform a schedule */
805 806
	if (need_schedule == RT_TRUE)
		rt_schedule();
B
bernard.xiong 已提交
807

808 809 810 811 812 813 814 815 816 817 818 819
	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
 */
D
dzzxzz 已提交
820
rt_err_t rt_mutex_control(rt_mutex_t mutex, rt_uint8_t cmd, void *arg)
821
{
822
	return -RT_ERROR;
823 824 825 826 827 828 829 830 831 832 833 834 835 836
}
#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
 */
D
dzzxzz 已提交
837
rt_err_t rt_event_init(rt_event_t event, const char *name, rt_uint8_t flag)
838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868
{
	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 */
869
	rt_ipc_list_resume_all(&(event->parent.suspend_thread));
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885

	/* 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
 */
D
dzzxzz 已提交
886
rt_event_t rt_event_create(const char *name, rt_uint8_t flag)
887 888 889
{
	rt_event_t event;

890
	RT_DEBUG_NOT_IN_INTERRUPT;
891

892
	/* allocate object */
D
dzzxzz 已提交
893
	event = (rt_event_t)rt_object_allocate(RT_Object_Class_Event, name);
894 895
	if (event == RT_NULL)
		return event;
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915

	/* 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
 */
D
dzzxzz 已提交
916
rt_err_t rt_event_delete(rt_event_t event)
917 918 919 920
{
	/* parameter check */
	RT_ASSERT(event != RT_NULL);

921
	RT_DEBUG_NOT_IN_INTERRUPT;
922

923
	/* resume all suspended thread */
924
	rt_ipc_list_resume_all(&(event->parent.suspend_thread));
925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943

	/* 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)
{
D
dzzxzz 已提交
944 945
	struct rt_list_node *n;
	struct rt_thread *thread;
946 947
	register rt_ubase_t level;
	register rt_base_t status;
B
bernard.xiong 已提交
948
	rt_bool_t need_schedule;
949 950 951

	/* parameter check */
	RT_ASSERT(event != RT_NULL);
952 953
	if (set == 0)
		return -RT_ERROR;
954

B
bernard.xiong 已提交
955
	need_schedule = RT_FALSE;
956
	RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(event->parent.parent)));
957 958 959 960 961 962

	/* disable interrupt */
	level = rt_hw_interrupt_disable();

	/* set event */
	event->set |= set;
963

D
dzzxzz 已提交
964
	if (!rt_list_isempty(&event->parent.suspend_thread))
965 966 967 968 969 970 971 972 973 974 975 976 977
	{
		/* 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)
				{
978
					/* received an AND event */
979 980 981 982 983 984 985
					status = RT_EOK;
				}
			}
			else if (thread->event_info & RT_EVENT_FLAG_OR)
			{
				if (thread->event_set & event->set)
				{
986 987 988 989
					/* save recieved event set */
					thread->event_set = thread->event_set & event->set;

					/* received an OR event */
990 991 992 993
					status = RT_EOK;
				}
			}

B
bernard.xiong 已提交
994
			/* move node to the next */
995 996 997 998 999
			n = n->next;

			/* condition is satisfied, resume thread */
			if (status == RT_EOK)
			{
1000 1001 1002 1003
				/* clear event */
				if (thread->event_info & RT_EVENT_FLAG_CLEAR)
					event->set &= ~thread->event_set;

1004 1005 1006
				/* resume thread, and thread list breaks out */
				rt_thread_resume(thread);

B
bernard.xiong 已提交
1007 1008
				/* need do a scheduling */
				need_schedule = RT_TRUE;
1009 1010 1011 1012 1013 1014 1015 1016
			}
		}
	}

	/* enable interrupt */
	rt_hw_interrupt_enable(level);

	/* do a schedule */
B
bernard.xiong 已提交
1017
	if (need_schedule == RT_TRUE)
1018
		rt_schedule();
1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034

	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
 */
D
dzzxzz 已提交
1035
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)
1036
{
D
dzzxzz 已提交
1037
	struct rt_thread *thread;
1038 1039 1040
	register rt_ubase_t level;
	register rt_base_t status;

1041
	RT_DEBUG_NOT_IN_INTERRUPT;
1042

1043 1044
	/* parameter check */
	RT_ASSERT(event != RT_NULL);
1045 1046
	if (set == 0)
		return -RT_ERROR;
1047 1048 1049

	/* init status */
	status = -RT_ERROR;
B
bernard.xiong 已提交
1050 1051 1052 1053
	/* get current thread */
	thread = rt_thread_self();
	/* reset thread error */
	thread->error = RT_EOK;
1054

1055
	RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(event->parent.parent)));
1056 1057 1058 1059 1060 1061 1062

	/* disable interrupt */
	level = rt_hw_interrupt_disable();

	/* check event set */
	if (option & RT_EVENT_FLAG_AND)
	{
1063 1064
		if ((event->set & set) == set)
			status = RT_EOK;
1065 1066 1067
	}
	else if (option & RT_EVENT_FLAG_OR)
	{
1068 1069
		if (event->set & set)
			status = RT_EOK;
1070 1071 1072 1073 1074
	}

	if (status == RT_EOK)
	{
		/* set received event */
1075
		*recved = (event->set & set);
1076 1077

		/* received event */
1078 1079
		if (option & RT_EVENT_FLAG_CLEAR)
			event->set &= ~set;
1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092
	}
	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 */
D
dzzxzz 已提交
1093
		rt_ipc_list_suspend(&(event->parent.suspend_thread), thread, event->parent.parent.flag);
1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110

		/* 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)
		{
D
dzzxzz 已提交
1111
			/* return error */
1112 1113 1114
			return thread->error;
		}

1115
		/* received an event, disable interrupt to protect */
1116 1117
		level = rt_hw_interrupt_disable();

1118 1119
		/* set received event */
		*recved = thread->event_set;
1120 1121 1122 1123 1124
	}

	/* enable interrupt */
	rt_hw_interrupt_enable(level);

1125
	RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(event->parent.parent)));
1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138

	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
 */
D
dzzxzz 已提交
1139
rt_err_t rt_event_control(rt_event_t event, rt_uint8_t cmd, void *arg)
1140
{
1141 1142 1143 1144 1145 1146 1147 1148 1149
	rt_ubase_t level;
	RT_ASSERT(event != RT_NULL);

	if (cmd == RT_IPC_CMD_RESET)
	{
		/* disable interrupt */
		level = rt_hw_interrupt_disable();

		/* resume all waiting thread */
1150
		rt_ipc_list_resume_all(&event->parent.suspend_thread);
1151 1152 1153 1154 1155 1156 1157

		/* init event set */
		event->set = 0;

		/* enable interrupt */
		rt_hw_interrupt_enable(level);

1158 1159
		rt_schedule();

1160 1161 1162 1163
		return RT_EOK;
	}

	return -RT_ERROR;
1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179
}
#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
 */
D
dzzxzz 已提交
1180
rt_err_t rt_mb_init(rt_mailbox_t mb, const char *name, void *msgpool, rt_size_t size, rt_uint8_t flag)
1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193
{
	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 */
D
dzzxzz 已提交
1194 1195 1196 1197 1198
	mb->msg_pool   = msgpool;
	mb->size       = size;
	mb->entry      = 0;
	mb->in_offset  = 0;
	mb->out_offset = 0;
1199

1200
	/* init an additional list of sender suspend thread */
1201 1202
	rt_list_init(&(mb->suspend_sender_thread));

1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218
	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 */
1219 1220 1221
	rt_ipc_list_resume_all(&(mb->parent.suspend_thread));
	/* also resume all mailbox private suspended thread */
	rt_ipc_list_resume_all(&(mb->suspend_sender_thread));
1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238

	/* 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
 */
D
dzzxzz 已提交
1239
rt_mailbox_t rt_mb_create(const char *name, rt_size_t size, rt_uint8_t flag)
1240 1241 1242
{
	rt_mailbox_t mb;

1243
	RT_DEBUG_NOT_IN_INTERRUPT;
1244

1245
	/* allocate object */
D
dzzxzz 已提交
1246
	mb = (rt_mailbox_t)rt_object_allocate(RT_Object_Class_MailBox, name);
1247 1248
	if (mb == RT_NULL)
		return mb;
1249 1250 1251 1252 1253 1254 1255 1256

	/* set parent */
	mb->parent.parent.flag = flag;

	/* init ipc object */
	rt_ipc_object_init(&(mb->parent));

	/* init mailbox */
D
dzzxzz 已提交
1257 1258
	mb->size     = size;
	mb->msg_pool = rt_malloc(mb->size * sizeof(rt_uint32_t));
1259 1260 1261 1262 1263 1264 1265
	if (mb->msg_pool == RT_NULL)
	{
		/* delete mailbox object */
		rt_object_delete(&(mb->parent.parent));

		return RT_NULL;
	}
D
dzzxzz 已提交
1266 1267 1268
	mb->entry = 0;
	mb->in_offset  = 0;
	mb->out_offset = 0;
1269

1270 1271 1272
	/* init an additional list of sender suspend thread */
	rt_list_init(&(mb->suspend_sender_thread));

1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
	return mb;
}

/**
 * This function will delete a mailbox object and release the memory
 *
 * @param mb the mailbox object
 *
 * @return the error code
 */
D
dzzxzz 已提交
1283
rt_err_t rt_mb_delete(rt_mailbox_t mb)
M
mbbill@gmail.com 已提交
1284
{
1285
	RT_DEBUG_NOT_IN_INTERRUPT;
1286

1287 1288 1289 1290
	/* parameter check */
	RT_ASSERT(mb != RT_NULL);

	/* resume all suspended thread */
1291
	rt_ipc_list_resume_all(&(mb->parent.suspend_thread));
1292

1293 1294
	/* also resume all mailbox private suspended thread */
	rt_ipc_list_resume_all(&(mb->suspend_sender_thread));
1295

qiuyiuestc's avatar
qiuyiuestc 已提交
1296
#if defined(RT_USING_MODULE) && defined(RT_USING_SLAB)
qiuyiuestc's avatar
qiuyiuestc 已提交
1297
	/* the mb object belongs to an application module */
D
dzzxzz 已提交
1298
	if (mb->parent.parent.flag & RT_OBJECT_FLAG_MODULE)
qiuyiuestc's avatar
qiuyiuestc 已提交
1299 1300 1301 1302
		rt_module_free(mb->parent.parent.module_id, mb->msg_pool);
	else
#endif

1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313
	/* free mailbox pool */
	rt_free(mb->msg_pool);

	/* delete mailbox object */
	rt_object_delete(&(mb->parent.parent));

	return RT_EOK;
}
#endif

/**
1314 1315
 * This function will send a mail to mailbox object. If the mailbox is full,
 * current thread will be suspended until timeout.
1316 1317 1318
 *
 * @param mb the mailbox object
 * @param value the mail
1319
 * @param timeout the waiting time
1320 1321 1322
 *
 * @return the error code
 */
D
dzzxzz 已提交
1323
rt_err_t rt_mb_send_wait(rt_mailbox_t mb, rt_uint32_t value, rt_int32_t timeout)
1324
{
D
dzzxzz 已提交
1325
	struct rt_thread *thread;
1326
	register rt_ubase_t temp;
1327
	rt_uint32_t tick_delta;
1328 1329

	/* parameter check */
1330
	RT_ASSERT(mb != RT_NULL);
1331

B
bernard.xiong@gmail.com 已提交
1332
	/* initialize delta tick */
1333
	tick_delta = 0;
B
bernard.xiong@gmail.com 已提交
1334 1335 1336
	/* get current thread */
	thread = rt_thread_self();

1337
	RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(mb->parent.parent)));
1338 1339 1340 1341

	/* disable interrupt */
	temp = rt_hw_interrupt_disable();

1342 1343 1344 1345
	/* for non-blocking call */
	if (mb->entry == mb->size && timeout == 0)
	{
		rt_hw_interrupt_enable(temp);
D
dzzxzz 已提交
1346

1347 1348 1349
		return -RT_EFULL;
	}

1350
	/* mailbox is full */
1351
	while (mb->entry == mb->size)
1352
	{
1353 1354 1355 1356 1357 1358
		/* reset error number in thread */
		thread->error = RT_EOK;

		/* no waiting, return timeout */
		if (timeout == 0)
		{
D
dzzxzz 已提交
1359 1360
			/* enable interrupt */
			rt_hw_interrupt_enable(temp);
D
dzzxzz 已提交
1361

D
dzzxzz 已提交
1362 1363
			return -RT_EFULL;
		}
B
bernard.xiong@gmail.com 已提交
1364

B
bernard.xiong@gmail.com 已提交
1365
		RT_DEBUG_NOT_IN_INTERRUPT;
1366
		/* suspend current thread */
D
dzzxzz 已提交
1367
		rt_ipc_list_suspend(&(mb->suspend_sender_thread), thread, mb->parent.parent.flag);
1368 1369 1370 1371 1372 1373 1374

		/* has waiting time, start thread timer */
		if (timeout > 0)
		{
			/* get the start tick of timer */
			tick_delta = rt_tick_get();

1375 1376 1377
			RT_DEBUG_LOG(RT_DEBUG_IPC,
				("mb_send_wait: start timer of thread:%s\n", thread->name));

1378 1379 1380 1381 1382
			/* 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));
		}

1383 1384 1385
		/* enable interrupt */
		rt_hw_interrupt_enable(temp);

1386 1387 1388 1389 1390 1391
		/* re-schedule */
		rt_schedule();

		/* resume from suspend state */
		if (thread->error != RT_EOK)
		{
D
dzzxzz 已提交
1392
			/* return error */
1393 1394 1395 1396 1397 1398
			return thread->error;
		}

		/* disable interrupt */
		temp = rt_hw_interrupt_disable();

B
bernard.xiong@gmail.com 已提交
1399
		/* if it's not waiting forever and then re-calculate timeout tick */
1400 1401 1402 1403
		if (timeout > 0)
		{
			tick_delta = rt_tick_get() - tick_delta;
			timeout -= tick_delta;
1404 1405
			if (timeout < 0)
				timeout = 0;
1406
		}
1407 1408 1409 1410 1411 1412
	}

	/* set ptr */
	mb->msg_pool[mb->in_offset] = value;
	/* increase input offset */
	++ mb->in_offset;
1413 1414
	if (mb->in_offset >= mb->size)
		mb->in_offset = 0;
1415 1416 1417
	/* increase message entry */
	mb->entry ++;

1418
	/* resume suspended thread */
B
bernard.xiong@gmail.com 已提交
1419
	if (!rt_list_isempty(&mb->parent.suspend_thread))
1420
	{
1421
		rt_ipc_list_resume(&(mb->parent.suspend_thread));
1422 1423 1424 1425 1426

		/* enable interrupt */
		rt_hw_interrupt_enable(temp);

		rt_schedule();
D
dzzxzz 已提交
1427

1428 1429 1430 1431 1432 1433 1434 1435 1436
		return RT_EOK;
	}

	/* enable interrupt */
	rt_hw_interrupt_enable(temp);

	return RT_EOK;
}

1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
/**
 * This function will send a mail to mailbox object, if there are threads suspended
 * on mailbox object, it will be waked up. This function will return immediately, if
 * you want blocking send, use rt_mb_send_wait instead.
 *
 * @param mb the mailbox object
 * @param value the mail
 *
 * @return the error code
 */
D
dzzxzz 已提交
1447
rt_err_t rt_mb_send(rt_mailbox_t mb, rt_uint32_t value)
1448
{
D
dzzxzz 已提交
1449
	return rt_mb_send_wait(mb, value, 0);
1450 1451
}

1452 1453 1454 1455 1456 1457 1458 1459 1460 1461
/**
 * 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
 */
D
dzzxzz 已提交
1462
rt_err_t rt_mb_recv(rt_mailbox_t mb, rt_uint32_t *value, rt_int32_t timeout)
1463
{
D
dzzxzz 已提交
1464
	struct rt_thread *thread;
1465
	register rt_ubase_t temp;
1466
	rt_uint32_t tick_delta;
1467 1468 1469 1470

	/* parameter check */
	RT_ASSERT(mb != RT_NULL);

B
bernard.xiong@gmail.com 已提交
1471 1472 1473 1474 1475
	/* initialize delta tick */
	tick_delta = 0;
	/* get current thread */
	thread = rt_thread_self();

1476
	RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(mb->parent.parent)));
1477 1478 1479 1480

	/* disable interrupt */
	temp = rt_hw_interrupt_disable();

1481 1482 1483 1484
	/* for non-blocking call */
	if (mb->entry == 0 && timeout == 0)
	{
		rt_hw_interrupt_enable(temp);
D
dzzxzz 已提交
1485
		
1486 1487 1488
		return -RT_ETIMEOUT;
	}

1489
	/* mailbox is empty */
1490
	while (mb->entry == 0)
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501
	{
		/* 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;
D
dzzxzz 已提交
1502
			
1503 1504 1505
			return -RT_ETIMEOUT;
		}

B
bernard.xiong@gmail.com 已提交
1506
		RT_DEBUG_NOT_IN_INTERRUPT;
1507
		/* suspend current thread */
D
dzzxzz 已提交
1508
		rt_ipc_list_suspend(&(mb->parent.suspend_thread), thread, mb->parent.parent.flag);
1509 1510 1511 1512

		/* has waiting time, start thread timer */
		if (timeout > 0)
		{
1513 1514 1515
			/* get the start tick of timer */
			tick_delta = rt_tick_get();

1516 1517 1518
			RT_DEBUG_LOG(RT_DEBUG_IPC,
				("mb_recv: start timer of thread:%s\n", thread->name));

1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529
			/* 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();

1530
		/* resume from suspend state */
1531 1532
		if (thread->error != RT_EOK)
		{
D
dzzxzz 已提交
1533
			/* return error */
1534 1535 1536 1537 1538
			return thread->error;
		}

		/* disable interrupt */
		temp = rt_hw_interrupt_disable();
1539

B
bernard.xiong@gmail.com 已提交
1540
		/* if it's not waiting forever and then re-calculate timeout tick */
1541 1542 1543 1544
		if (timeout > 0)
		{
			tick_delta = rt_tick_get() - tick_delta;
			timeout -= tick_delta;
1545 1546
			if (timeout < 0)
				timeout = 0;
1547
		}
1548 1549 1550 1551 1552 1553
	}

	/* fill ptr */
	*value = mb->msg_pool[mb->out_offset];

	/* increase output offset */
D
dzzxzz 已提交
1554
	++ mb->out_offset;
1555 1556
	if (mb->out_offset >= mb->size)
		mb->out_offset = 0;
1557 1558 1559
	/* decrease message entry */
	mb->entry --;

1560
	/* resume suspended thread */
B
bernard.xiong@gmail.com 已提交
1561
	if (!rt_list_isempty(&(mb->suspend_sender_thread)))
1562 1563 1564 1565 1566 1567
	{
		rt_ipc_list_resume(&(mb->suspend_sender_thread));

		/* enable interrupt */
		rt_hw_interrupt_enable(temp);

1568 1569
		RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(mb->parent.parent)));

1570 1571 1572 1573 1574
		rt_schedule();

		return RT_EOK;
	}

1575 1576 1577
	/* enable interrupt */
	rt_hw_interrupt_enable(temp);

1578
	RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(mb->parent.parent)));
1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591

	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
 */
D
dzzxzz 已提交
1592
rt_err_t rt_mb_control(rt_mailbox_t mb, rt_uint8_t cmd, void *arg)
1593
{
1594 1595 1596 1597 1598 1599 1600 1601 1602
	rt_ubase_t level;
	RT_ASSERT(mb != RT_NULL);

	if (cmd == RT_IPC_CMD_RESET)
	{
		/* disable interrupt */
		level = rt_hw_interrupt_disable();

		/* resume all waiting thread */
1603
		rt_ipc_list_resume_all(&(mb->parent.suspend_thread));
1604 1605 1606
		/* also resume all mailbox private suspended thread */
		rt_ipc_list_resume_all(&(mb->suspend_sender_thread));

1607
		/* re-init mailbox */
D
dzzxzz 已提交
1608 1609 1610
		mb->entry      = 0;
		mb->in_offset  = 0;
		mb->out_offset = 0;
1611

1612 1613 1614
		/* enable interrupt */
		rt_hw_interrupt_enable(level);

1615 1616
		rt_schedule();

1617 1618 1619 1620
		return RT_EOK;
	}

	return -RT_ERROR;
1621 1622 1623 1624 1625 1626
}
#endif /* end of RT_USING_MAILBOX */

#ifdef RT_USING_MESSAGEQUEUE
struct rt_mq_message
{
D
dzzxzz 已提交
1627
	struct rt_mq_message *next;
1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642
};

/**
 * 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
 */
D
dzzxzz 已提交
1643
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)
1644
{
D
dzzxzz 已提交
1645
	struct rt_mq_message *head;
1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
	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 */
D
dzzxzz 已提交
1661
	mq->msg_pool = msgpool;
1662 1663

	/* get correct message size */
1664
	mq->msg_size = RT_ALIGN(msg_size, RT_ALIGN_SIZE);
D
dzzxzz 已提交
1665
	mq->max_msgs = pool_size / (mq->msg_size + sizeof(struct rt_mq_message));
1666 1667 1668 1669 1670 1671 1672 1673 1674

	/* 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 ++)
	{
D
dzzxzz 已提交
1675
		head = (struct rt_mq_message *)((rt_uint8_t *)mq->msg_pool +
1676 1677 1678 1679 1680 1681
			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 */
D
dzzxzz 已提交
1682
	mq->entry = 0;
1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699

	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 */
1700
	rt_ipc_list_resume_all(&mq->parent.suspend_thread);
1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718

	/* 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
 */
D
dzzxzz 已提交
1719
rt_mq_t rt_mq_create(const char *name, rt_size_t msg_size, rt_size_t max_msgs, rt_uint8_t flag)
1720
{
D
dzzxzz 已提交
1721 1722
	struct rt_messagequeue *mq;
	struct rt_mq_message *head;
1723 1724
	register rt_base_t temp;

1725
	RT_DEBUG_NOT_IN_INTERRUPT;
1726

1727
	/* allocate object */
D
dzzxzz 已提交
1728
	mq = (rt_mq_t)rt_object_allocate(RT_Object_Class_MessageQueue, name);
1729 1730
	if (mq == RT_NULL)
		return mq;
1731 1732 1733 1734 1735 1736 1737 1738 1739 1740

	/* set parent */
	mq->parent.parent.flag = flag;

	/* init ipc object */
	rt_ipc_object_init(&(mq->parent));

	/* init message queue */

	/* get correct message size */
D
dzzxzz 已提交
1741 1742
	mq->msg_size = RT_ALIGN(msg_size, RT_ALIGN_SIZE);
	mq->max_msgs = max_msgs;
1743 1744

	/* allocate message pool */
D
dzzxzz 已提交
1745
	mq->msg_pool = rt_malloc((mq->msg_size + sizeof(struct rt_mq_message))* mq->max_msgs);
1746 1747 1748
	if (mq->msg_pool == RT_NULL)
	{
		rt_mq_delete(mq);
D
dzzxzz 已提交
1749
		
1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767
		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 */
D
dzzxzz 已提交
1768
	mq->entry = 0;
1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779

	return mq;
}

/**
 * This function will delete a message queue object and release the memory
 *
 * @param mq the message queue object
 *
 * @return the error code
 */
D
dzzxzz 已提交
1780
rt_err_t rt_mq_delete(rt_mq_t mq)
1781
{
1782
	RT_DEBUG_NOT_IN_INTERRUPT;
1783

1784 1785 1786 1787
	/* parameter check */
	RT_ASSERT(mq != RT_NULL);

	/* resume all suspended thread */
1788
	rt_ipc_list_resume_all(&(mq->parent.suspend_thread));
1789

qiuyiuestc's avatar
qiuyiuestc 已提交
1790
#if defined(RT_USING_MODULE) && defined(RT_USING_SLAB)
qiuyiuestc's avatar
qiuyiuestc 已提交
1791
	/* the mq object belongs to an application module */
D
dzzxzz 已提交
1792
	if (mq->parent.parent.flag & RT_OBJECT_FLAG_MODULE)
qiuyiuestc's avatar
qiuyiuestc 已提交
1793 1794 1795 1796 1797
		rt_module_free(mq->parent.parent.module_id, mq->msg_pool);
	else
#endif

	/* free message queue pool */
1798 1799
	rt_free(mq->msg_pool);

qiuyiuestc's avatar
qiuyiuestc 已提交
1800
	/* delete message queue object */
1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816
	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
 */
D
dzzxzz 已提交
1817
rt_err_t rt_mq_send(rt_mq_t mq, void *buffer, rt_size_t size)
1818 1819
{
	register rt_ubase_t temp;
D
dzzxzz 已提交
1820
	struct rt_mq_message *msg;
1821

1822 1823 1824 1825
	RT_ASSERT(mq != RT_NULL);
	RT_ASSERT(buffer != RT_NULL);
	RT_ASSERT(size != 0);

1826
	/* greater than one message size */
1827 1828
	if (size > mq->msg_size)
		return -RT_ERROR;
1829

1830
	RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(mq->parent.parent)));
1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847

	/* 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;

1848 1849 1850
	/* enable interrupt */
	rt_hw_interrupt_enable(temp);

1851 1852
	/* the msg is the new tailer of list, the next shall be NULL */
	msg->next = RT_NULL;
1853 1854 1855
	/* copy buffer */
	rt_memcpy(msg + 1, buffer, size);

1856 1857
	/* disable interrupt */
	temp = rt_hw_interrupt_disable();
1858 1859 1860 1861
	/* link msg to message queue */
	if (mq->msg_queue_tail != RT_NULL)
	{
		/* if the tail exists, */
D
dzzxzz 已提交
1862
		((struct rt_mq_message *)mq->msg_queue_tail)->next = msg;
1863 1864 1865 1866 1867
	}

	/* set new tail */
	mq->msg_queue_tail = msg;
	/* if the head is empty, set head */
D
dzzxzz 已提交
1868 1869
	if (mq->msg_queue_head == RT_NULL)
		mq->msg_queue_head = msg;
1870 1871 1872 1873

	/* increase message entry */
	mq->entry ++;

1874
	/* resume suspended thread */
B
bernard.xiong@gmail.com 已提交
1875
	if (!rt_list_isempty(&mq->parent.suspend_thread))
1876
	{
1877
		rt_ipc_list_resume(&(mq->parent.suspend_thread));
1878 1879 1880 1881 1882

		/* enable interrupt */
		rt_hw_interrupt_enable(temp);

		rt_schedule();
D
dzzxzz 已提交
1883

1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903
		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
 */
D
dzzxzz 已提交
1904
rt_err_t rt_mq_urgent(rt_mq_t mq, void *buffer, rt_size_t size)
1905 1906
{
	register rt_ubase_t temp;
D
dzzxzz 已提交
1907
	struct rt_mq_message *msg;
1908

1909 1910 1911 1912
	RT_ASSERT(mq != RT_NULL);
	RT_ASSERT(buffer != RT_NULL);
	RT_ASSERT(size != 0);

1913
	/* greater than one message size */
1914 1915
	if (size > mq->msg_size)
		return -RT_ERROR;
1916

1917
	RT_OBJECT_HOOK_CALL(rt_object_put_hook, (&(mq->parent.parent)));
1918 1919 1920 1921 1922

	/* disable interrupt */
	temp = rt_hw_interrupt_disable();

	/* get a free list, there must be an empty item */
D
dzzxzz 已提交
1923
	msg = (struct rt_mq_message *)mq->msg_queue_free;
1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934
	/* 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;

1935 1936 1937
	/* enable interrupt */
	rt_hw_interrupt_enable(temp);

1938 1939 1940
	/* copy buffer */
	rt_memcpy(msg + 1, buffer, size);

1941 1942 1943
	/* disable interrupt */
	temp = rt_hw_interrupt_disable();

1944 1945 1946 1947 1948
	/* link msg to the beginning of message queue */
	msg->next = mq->msg_queue_head;
	mq->msg_queue_head = msg;

	/* if there is no tail */
1949 1950
	if (mq->msg_queue_tail == RT_NULL)
		mq->msg_queue_tail = msg;
1951 1952 1953 1954

	/* increase message entry */
	mq->entry ++;

1955
	/* resume suspended thread */
D
dzzxzz 已提交
1956
	if (!rt_list_isempty(&mq->parent.suspend_thread))
1957
	{
1958
		rt_ipc_list_resume(&(mq->parent.suspend_thread));
1959 1960 1961 1962 1963

		/* enable interrupt */
		rt_hw_interrupt_enable(temp);

		rt_schedule();
D
dzzxzz 已提交
1964

1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984
		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
 */
D
dzzxzz 已提交
1985
rt_err_t rt_mq_recv(rt_mq_t mq, void *buffer, rt_size_t size, rt_int32_t timeout)
1986
{
D
dzzxzz 已提交
1987
	struct rt_thread *thread;
1988
	register rt_ubase_t temp;
D
dzzxzz 已提交
1989
	struct rt_mq_message *msg;
1990
	rt_uint32_t tick_delta;
1991

1992 1993 1994 1995
	RT_ASSERT(mq != RT_NULL);
	RT_ASSERT(buffer != RT_NULL);
	RT_ASSERT(size != 0);

B
bernard.xiong@gmail.com 已提交
1996 1997 1998 1999
	/* initialize delta tick */
	tick_delta = 0;
	/* get current thread */
	thread = rt_thread_self();
2000
	RT_OBJECT_HOOK_CALL(rt_object_trytake_hook, (&(mq->parent.parent)));
2001

2002 2003 2004 2005 2006 2007 2008
	/* disable interrupt */
	temp = rt_hw_interrupt_disable();

	/* for non-blocking call */
	if (mq->entry == 0 && timeout == 0)
	{
		rt_hw_interrupt_enable(temp);
D
dzzxzz 已提交
2009

2010 2011 2012
		return -RT_ETIMEOUT;
	}

2013 2014
	/* message queue is empty */
	while (mq->entry == 0)
2015
	{
2016 2017
		RT_DEBUG_NOT_IN_INTERRUPT;

2018 2019 2020 2021 2022 2023 2024 2025 2026 2027
		/* 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;
D
dzzxzz 已提交
2028

2029 2030 2031 2032
			return -RT_ETIMEOUT;
		}

		/* suspend current thread */
D
dzzxzz 已提交
2033
		rt_ipc_list_suspend(&(mq->parent.suspend_thread), thread, mq->parent.parent.flag);
2034 2035 2036 2037

		/* has waiting time, start thread timer */
		if (timeout > 0)
		{
2038 2039
			/* get the start tick of timer */
			tick_delta = rt_tick_get();
B
bernard.xiong 已提交
2040

D
dzzxzz 已提交
2041
			RT_DEBUG_LOG(RT_DEBUG_IPC, ("set thread:%s to timer list\n", thread->name));
2042

2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056
			/* 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)
		{
D
dzzxzz 已提交
2057
			/* return error */
2058 2059 2060 2061 2062
			return thread->error;
		}

		/* disable interrupt */
		temp = rt_hw_interrupt_disable();
2063

B
bernard.xiong@gmail.com 已提交
2064
		/* if it's not waiting forever and then re-calculate timeout tick */
2065 2066 2067 2068
		if (timeout > 0)
		{
			tick_delta = rt_tick_get() - tick_delta;
			timeout -= tick_delta;
2069 2070
			if (timeout < 0)
				timeout = 0;
2071
		}
2072 2073 2074
	}

	/* get message from queue */
D
dzzxzz 已提交
2075
	msg = (struct rt_mq_message *)mq->msg_queue_head;
2076 2077 2078 2079

	/* move message queue head */
	mq->msg_queue_head = msg->next;
	/* reach queue tail, set to NULL */
2080 2081
	if (mq->msg_queue_tail == msg)
		mq->msg_queue_tail = RT_NULL;
2082

2083 2084 2085 2086 2087 2088
	/* decrease message entry */
	mq->entry --;

	/* enable interrupt */
	rt_hw_interrupt_enable(temp);

2089
	/* copy message */
D
dzzxzz 已提交
2090
	rt_memcpy(buffer, msg + 1, size > mq->msg_size ? mq->msg_size : size);
2091

2092 2093
	/* disable interrupt */
	temp = rt_hw_interrupt_disable();
2094
	/* put message to free list */
D
dzzxzz 已提交
2095
	msg->next = (struct rt_mq_message *)mq->msg_queue_free;
2096 2097 2098 2099
	mq->msg_queue_free = msg;
	/* enable interrupt */
	rt_hw_interrupt_enable(temp);

2100
	RT_OBJECT_HOOK_CALL(rt_object_take_hook, (&(mq->parent.parent)));
2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113

	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
 */
D
dzzxzz 已提交
2114
rt_err_t rt_mq_control(rt_mq_t mq, rt_uint8_t cmd, void *arg)
2115
{
2116
	rt_ubase_t level;
D
dzzxzz 已提交
2117
	struct rt_mq_message *msg;
2118 2119 2120 2121 2122 2123 2124 2125 2126

	RT_ASSERT(mq != RT_NULL);

	if (cmd == RT_IPC_CMD_RESET)
	{
		/* disable interrupt */
		level = rt_hw_interrupt_disable();

		/* resume all waiting thread */
2127
		rt_ipc_list_resume_all(&mq->parent.suspend_thread);
2128 2129 2130 2131 2132

		/* release all message in the queue */
		while (mq->msg_queue_head != RT_NULL)
		{
			/* get message from queue */
D
dzzxzz 已提交
2133
			msg = (struct rt_mq_message *)mq->msg_queue_head;
2134 2135 2136 2137

			/* move message queue head */
			mq->msg_queue_head = msg->next;
			/* reach queue tail, set to NULL */
2138 2139
			if (mq->msg_queue_tail == msg)
				mq->msg_queue_tail = RT_NULL;
2140 2141

			/* put message to free list */
D
dzzxzz 已提交
2142
			msg->next = (struct rt_mq_message *)mq->msg_queue_free;
2143 2144 2145 2146 2147 2148 2149 2150 2151
			mq->msg_queue_free = msg;
		}

		/* clean entry */
		mq->entry = 0;

		/* enable interrupt */
		rt_hw_interrupt_enable(level);

2152 2153
		rt_schedule();

2154 2155 2156 2157
		return RT_EOK;
	}

	return -RT_ERROR;
2158 2159
}
#endif /* end of RT_USING_MESSAGEQUEUE */
D
dzzxzz 已提交
2160

2161
/*@}*/