2002-05-01 10:36:30 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
|
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2003-02-07 09:42:57 +00:00
|
|
|
#include "../../firmware/export/kernel.h"
|
2002-05-01 10:36:30 +00:00
|
|
|
|
2003-06-29 16:43:15 +00:00
|
|
|
#ifndef NO_REDEFINES_PLEASE
|
|
|
|
|
2002-05-01 10:36:30 +00:00
|
|
|
#define sleep(x) x11_sleep(x)
|
2003-07-01 21:05:43 +00:00
|
|
|
#define mutex_init(x) (void)x
|
|
|
|
#define mutex_lock(x) (void)x
|
|
|
|
#define mutex_unlock(x) (void)x
|
2002-05-01 10:36:30 +00:00
|
|
|
|
2003-06-29 16:43:15 +00:00
|
|
|
#endif
|
|
|
|
|
2002-05-01 10:36:30 +00:00
|
|
|
void x11_sleep(int);
|