2002-04-22 12:07:34 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2002 by Ulf Ralberg
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
2002-04-22 19:11:17 +00:00
|
|
|
#ifndef THREAD_H
|
|
|
|
#define THREAD_H
|
2002-04-22 12:07:34 +00:00
|
|
|
|
|
|
|
#define MAXTHREADS 16
|
2002-07-15 22:21:18 +00:00
|
|
|
#define DEFAULT_STACK_SIZE 0x800 /* Bytes */
|
2002-04-22 12:07:34 +00:00
|
|
|
|
2002-07-15 22:21:18 +00:00
|
|
|
int create_thread(void* function, void* stack, int stack_size, char *name);
|
2002-04-22 19:11:17 +00:00
|
|
|
void switch_thread(void);
|
2002-06-07 14:56:10 +00:00
|
|
|
void init_threads(void);
|
2002-07-15 22:21:18 +00:00
|
|
|
int thread_stack_usage(int threadnum);
|
2002-04-22 12:07:34 +00:00
|
|
|
|
2002-04-22 19:11:17 +00:00
|
|
|
#endif
|