thread.h

Go to the documentation of this file.
00001 /* TinyaML
00002  * Copyright (C) 2007 Damien Leroux
00003  *
00004  * This program is free software; you can redistribute it and/or
00005  * modify it under the terms of the GNU General Public License
00006  * as published by the Free Software Foundation; either version 2
00007  * of the License, or (at your option) any later version.
00008  *
00009  * This program is distributed in the hope that it will be useful,
00010  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00011  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
00012  * GNU General Public License for more details.
00013  *
00014  * You should have received a copy of the GNU General Public License
00015  * along with this program; if not, write to the Free Software
00016  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
00017  */
00018 
00019 
00020 #ifndef _BML_THREAD_H_
00021 #define _BML_THREAD_H_
00022 
00037 thread_t thread_new(word_t prio, program_t p, word_t ip);
00039 void thread_init(thread_t,word_t prio, program_t p, word_t ip);
00041 void thread_delete(vm_t,thread_t);
00043 void thread_deinit(vm_t vm, thread_t t);
00044 
00046 void thread_set_state(vm_t, thread_t, thread_state_t);
00053 mutex_t mutex_new();
00054 void mutex_init(mutex_t);
00055 void mutex_delete(vm_t,mutex_t);
00056 void mutex_deinit(mutex_t);
00057 
00058 long mutex_lock(vm_t, mutex_t, thread_t);
00059 long mutex_unlock(vm_t, mutex_t, thread_t);
00060 
00068 vm_blocker_t blocker_new();
00069 void blocker_free(vm_blocker_t);
00070 void blocker_suspend(vm_t,vm_blocker_t,thread_t);
00071 void blocker_resume(vm_t,vm_blocker_t);
00072 
00076 
00077 #endif
00078 

Generated on Wed Feb 6 14:46:04 2008 for TinyaML by  doxygen 1.5.3