Quick and dirty CoOS + LWIP ( Webserver )

Dependencies:   mbed lwip

Committer:
astroboy
Date:
Sat Sep 10 22:41:10 2011 +0000
Revision:
0:94897d537b31

        

Who changed what in which revision?

UserRevisionLine numberNew contents of line
astroboy 0:94897d537b31 1 /**
astroboy 0:94897d537b31 2 *******************************************************************************
astroboy 0:94897d537b31 3 * @file OsCore.h
astroboy 0:94897d537b31 4 * @version V1.1.4
astroboy 0:94897d537b31 5 * @date 2011.04.20
astroboy 0:94897d537b31 6 * @brief Header file related to kernel
astroboy 0:94897d537b31 7 *******************************************************************************
astroboy 0:94897d537b31 8 * @copy
astroboy 0:94897d537b31 9 *
astroboy 0:94897d537b31 10 * INTERNAL FILE,DON'T PUBLIC.
astroboy 0:94897d537b31 11 *
astroboy 0:94897d537b31 12 * <h2><center>&copy; COPYRIGHT 2009 CooCox </center></h2>
astroboy 0:94897d537b31 13 *******************************************************************************
astroboy 0:94897d537b31 14 */
astroboy 0:94897d537b31 15
astroboy 0:94897d537b31 16
astroboy 0:94897d537b31 17 #ifndef _CORE_H
astroboy 0:94897d537b31 18 #define _CORE_H
astroboy 0:94897d537b31 19
astroboy 0:94897d537b31 20 #include <CoOS.h>
astroboy 0:94897d537b31 21
astroboy 0:94897d537b31 22
astroboy 0:94897d537b31 23 #define OsSchedLock() OSSchedLock++; /*!< Lock schedule */
astroboy 0:94897d537b31 24 extern void OsSchedUnlock(void);
astroboy 0:94897d537b31 25
astroboy 0:94897d537b31 26 #endif
astroboy 0:94897d537b31 27