eth_device_init is not re-entrance, add a warning.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1479 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
mbbill@gmail.com 2011-06-10 02:50:59 +00:00
parent 782bdd479a
commit f00548260a
1 changed files with 3 additions and 0 deletions

View File

@ -153,6 +153,9 @@ static err_t ethernetif_init(struct netif *netif)
/* ethernetif APIs */
/* WARNING: because netif_set_up() is not re-entrance ( it will pending on sem/mbox )
* you MUST NOT call it before scheduler starts.
*/
rt_err_t eth_device_init(struct eth_device* dev, const char* name)
{
struct netif* pnetif;