export more symbols of PThread.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2433 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong@gmail.com
2012-11-23 02:40:32 +00:00
parent ffbd0a1673
commit 44eaae8c80
13 changed files with 123 additions and 5 deletions

View File

@@ -12,6 +12,7 @@
* 2006-03-13 bernard first version
* 2012-05-15 lgnq modified according bernard's implementation.
* 2012-05-28 bernard code cleanup
* 2012-11-23 bernard fix compiler warning.
*/
#include <rthw.h>
@@ -427,7 +428,7 @@ void rt_hw_serial_isr(struct rt_serial_device *serial)
*/
void rt_hw_serial_dma_tx_isr(struct rt_serial_device *serial)
{
void *data_ptr;
const void *data_ptr;
rt_size_t data_size;
if (RT_EOK == rt_data_queue_pop(&(serial->tx_dq), &data_ptr, &data_size, 0))