diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-09-24 12:28:07 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-09-24 12:28:07 +0000 |
commit | c9205e2fd961c60cffd1000936340806a8e45558 (patch) | |
tree | 17a2d7da8aa845a1db466985ec5cf53f8bfff389 /src/lib/ch.cpp | |
parent | b72177007695129c089c58f65d05ae6178f604a3 (diff) | |
download | ChibiOS-c9205e2fd961c60cffd1000936340806a8e45558.tar.gz ChibiOS-c9205e2fd961c60cffd1000936340806a8e45558.tar.bz2 ChibiOS-c9205e2fd961c60cffd1000936340806a8e45558.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@442 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/lib/ch.cpp')
-rw-r--r-- | src/lib/ch.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/ch.cpp b/src/lib/ch.cpp index 170a143a7..1d63cefd5 100644 --- a/src/lib/ch.cpp +++ b/src/lib/ch.cpp @@ -74,9 +74,9 @@ namespace chibios_rt { return ((BaseThread *)arg)->Main();
}
- BaseThread::BaseThread(tprio_t prio, tmode_t mode, void *workspace, size_t wsize) {
+ BaseThread::BaseThread(void *workspace, size_t wsize, tprio_t prio) {
- thread_ref = chThdCreate(prio, mode, workspace, wsize, thdstart, this);
+ thread_ref = chThdCreateStatic(workspace, wsize, prio, thdstart, this);
}
void BaseThread::Exit(msg_t msg) {
|