12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- /*
- * psp_osal.h
- *
- * Description:
- *
- * --------------------------------------------------------------------------
- *
- * Pthreads-embedded (PTE) - POSIX Threads Library for embedded systems
- * Copyright(C) 2008 Jason Schmidlapp
- *
- * Contact Email: [email protected]
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library in the file COPYING.LIB;
- * if not, write to the Free Software Foundation, Inc.,
- * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
- */
- #include <std.h>
- #include <tsk.h>
- extern void pte_test_main();
- int main(void)
- {
- // Start tests from a task as most DSP/BIOS API calls cannot
- // be made from main
- struct TSK_Attrs attrs;
- attrs = TSK_ATTRS;
- attrs.stacksize = 4*1024;
- TSK_create((Fxn)pte_test_main,&attrs);
- }
|