summaryrefslogtreecommitdiffstatshomepage
path: root/cc3200/mpthreadport.c
Commit message (Collapse)AuthorAge
* cc3200/mpthreadport: Move mem alloc outside the thread_mutex lock.Damien George2016-06-28
| | | | | Otherwise there could be a deadlock, with the GC's mutex and thread_mutex.
* cc3200/mpthreadport: Scan more root pointers from thread data.Damien George2016-06-28
|
* cc3200/mpthreadport: Properly initialise the main thread's data.Damien George2016-06-28
|
* cc3200/mpthreadport: Make mutex statically allocated.Damien George2016-06-28
| | | | Reduced the need for the FreeRTOS heap to allocate the mutex.
* cc3200: Fix call to new exception to be _msg instead of _arg1.Damien George2016-06-28
|
* py/modthread: Allow to properly set the stack limit of a thread.Damien George2016-06-28
| | | | | We rely on the port setting and adjusting the stack size so there is enough room to recover from hitting the stack limit.
* cc3200: Add basic threading capabilities.Damien George2016-06-28
Can create a new thread and run it. Does not use the GIL at this point.